From 2327effd23bd76a11b0eadba86fb0a652d34b8fd Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Wed, 13 Aug 2025 17:23:21 +0530 Subject: [PATCH 01/11] docs: add transport config to README.md --- client/README.md | 164 +++++++ .../package-lock.json | 399 +++++++++++++++++- 2 files changed, 560 insertions(+), 3 deletions(-) diff --git a/client/README.md b/client/README.md index f519d60f..ae455521 100644 --- a/client/README.md +++ b/client/README.md @@ -194,12 +194,176 @@ const client = createAvalancheClient({ transport: { type: "", // Transport type url: "", + config: { + // Transport-specific configuration + } }, apiKey: "", // Optional API key rlToken: "", // Optional rate limit token }) ``` +### Transport Configuration + +The SDK supports multiple transport types for connecting to Avalanche nodes. Each transport type has specific configuration options: + +#### HTTP Transport (Recommended) +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "http", + url: "https://api.avax.network/ext/bc/C/rpc", // Optional custom RPC URL + config: { + // HTTP-specific configuration + fetchOptions: { + headers: { + "Custom-Header": "value" + }, + } + retryCount: 3, + retryDelay: 1000, + timeout: 5000 + } + } +}) +``` + +**HTTP Transport Features:** +- **Automatic URL Resolution**: If no URL is provided, uses the chain's default RPC endpoint +- **Custom Headers**: Support for custom HTTP headers via `fetchOptions.headers` +- **API Key Support**: Automatically adds `x-glacier-api-key` header when `apiKey` is provided +- **Rate Limit Support**: Automatically adds `rlToken` header when `rlToken` is provided + +#### WebSocket Transport +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "ws", + url: "wss://api.avax.network/ext/bc/C/ws", // Optional custom WebSocket URL + config: { + // WebSocket-specific configuration + retryCount: 3, + retryDelay: 1000 + } + } +}) +``` + +**WebSocket Transport Features:** +- **Real-time Updates**: Supports WebSocket connections for live data +- **Automatic Reconnection**: Built-in retry logic with configurable retry count and delay +- **Event-driven**: Ideal for subscribing to blockchain events and real-time updates + +#### Custom Transport +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "custom", + provider: window.avalanche, // Custom provider implementation + config: { + // Custom transport configuration + } + } +}) +``` + +**Custom Transport Features:** +- **Provider Integration**: Integrate with custom RPC providers or middleware +- **Flexible Configuration**: Full control over transport behavior +- **Wallet Support**: Special handling for wallet clients + +#### Fallback Transport +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "fallback", + transports: [ + { type: "http", url: "https://primary-rpc.com" }, + { type: "http", url: "https://backup-rpc.com" } + ], + config: { + // Fallback configuration + retryCount: 3, + retryDelay: 1000 + } + } +}) +``` + +**Fallback Transport Features:** +- **High Availability**: Automatic failover between multiple RPC endpoints + +### Advanced Configuration Examples + +#### Custom HTTP Headers and Timeouts +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "http", + config: { + fetchOptions: { + headers: { + "X-Custom-Header": "custom-value" + }, + } + } + } +}) +``` + +#### Multiple Fallback Endpoints +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "fallback", + transports: [ + { type: "http", url: "https://api.avax.network/ext/bc/C/rpc" }, + { type: "http", url: "https://rpc.ankr.com/avalanche" }, + { type: "http", url: "https://avalanche.public-rpc.com" } + ], + config: { + retryCount: 5, + retryDelay: 2000 + } + } +}) +``` + +#### WebSocket with Custom Configuration +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "ws", + config: { + retryCount: 5, + retryDelay: 2000, + maxRetryDelay: 30000 + } + } +}) +``` + +### Transport Selection Guidelines + +- **HTTP Transport**: Best for most use cases, simple configuration, wide compatibility +- **WebSocket Transport**: Ideal for real-time applications, event subscriptions, live updates +- **Custom Transport**: Use when integrating with specific providers or middleware +- **Fallback Transport**: Recommended for production applications requiring high availability + +### Environment Considerations + +- **Browser**: HTTP and WebSocket transports are fully supported +- **Node.js**: All transport types are supported +- **Mobile**: HTTP transport is recommended for mobile applications +- **Production**: Consider using fallback transport with multiple RPC endpoints for reliability + ## Exported Modules and Utilities ### Main Exports diff --git a/client/examples/react-show-balance-and-cross-chain-transfers/package-lock.json b/client/examples/react-show-balance-and-cross-chain-transfers/package-lock.json index d0bba141..f7cdd8bd 100644 --- a/client/examples/react-show-balance-and-cross-chain-transfers/package-lock.json +++ b/client/examples/react-show-balance-and-cross-chain-transfers/package-lock.json @@ -1,13 +1,14 @@ { - "name": "react-core-wallet-example", + "name": "react-show-balance-and-cross-chain-transfers", "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "react-core-wallet-example", + "name": "react-show-balance-and-cross-chain-transfers", "version": "0.1.0", "dependencies": { + "@avalanche-sdk/client": "^0.0.4-alpha.12", "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", "@mui/icons-material": "^6.5.0", @@ -25,6 +26,12 @@ "vite": "^7.1.2" } }, + "node_modules/@adraffy/ens-normalize": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.0.tgz", + "integrity": "sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==", + "license": "MIT" + }, "node_modules/@ampproject/remapping": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", @@ -39,6 +46,37 @@ "node": ">=6.0.0" } }, + "node_modules/@avalabs/avalanchejs": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@avalabs/avalanchejs/-/avalanchejs-5.0.0.tgz", + "integrity": "sha512-0hJK/Hdf8v+q05c8+5K6arFmzq7o1W4I05/Dmr+Es1XRi8canvTu1Y0RruYd6ea2rrvX3UhKrPs3BzLhCTHDrw==", + "dependencies": { + "@noble/curves": "1.3.0", + "@noble/hashes": "1.3.3", + "@noble/secp256k1": "2.0.0", + "@scure/base": "1.1.5", + "micro-eth-signer": "0.7.2" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@avalanche-sdk/client": { + "version": "0.0.4-alpha.12", + "resolved": "https://registry.npmjs.org/@avalanche-sdk/client/-/client-0.0.4-alpha.12.tgz", + "integrity": "sha512-0SuILrZXszPt8Po1QMWemT1NxDsgxpulSVpG//ASOfLjjpyx7oBzKrxfdThvcLO9glAHyHnqqHiK/5KPSZdzcg==", + "license": "BSD-3-Clause", + "dependencies": { + "@avalabs/avalanchejs": "^5.0.0", + "@noble/hashes": "1.3.3", + "util": "^0.12.5", + "viem": "^2.33.3" + }, + "engines": { + "node": ">=20", + "npm": ">=10" + } + }, "node_modules/@babel/code-frame": { "version": "7.27.1", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", @@ -915,6 +953,18 @@ "node": ">=18" } }, + "node_modules/@ethereumjs/rlp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.0.tgz", + "integrity": "sha512-WuS1l7GJmB0n0HsXLozCoEFc9IwYgf3l0gCkKVYgR67puVF1O4OpEaN0hWmm1c+iHUHFCKt1hJrvy5toLg+6ag==", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.12", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", @@ -1179,6 +1229,54 @@ } } }, + "node_modules/@noble/ciphers": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz", + "integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/curves": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.3.0.tgz", + "integrity": "sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.3.3" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.3.tgz", + "integrity": "sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==", + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/secp256k1": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-2.0.0.tgz", + "integrity": "sha512-rUGBd95e2a45rlmFTqQJYEFA4/gdIARFfuTuTqLglz0PZ6AKyzyXsEZZq7UZn8hZsvaBgpCzKKBJizT2cJERXw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, "node_modules/@popperjs/core": { "version": "2.11.8", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", @@ -1476,6 +1574,99 @@ "win32" ] }, + "node_modules/@scure/base": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.5.tgz", + "integrity": "sha512-Brj9FiG2W1MRQSTB212YVPRrcbjkv48FoZi/u4l/zds/ieRrqsh7aUf6CLwkAq61oKXr/ZlTzlY66gLIj3TFTQ==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz", + "integrity": "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==", + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.9.0", + "@noble/hashes": "~1.8.0", + "@scure/base": "~1.2.5" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32/node_modules/@noble/curves": { + "version": "1.9.6", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.6.tgz", + "integrity": "sha512-GIKz/j99FRthB8icyJQA51E8Uk5hXmdyThjgQXRKiv9h0zeRlzSCLIzFw6K1LotZ3XuB7yzlf76qk7uBmTdFqA==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.8.0" + }, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32/node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32/node_modules/@scure/base": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", + "integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip39": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz", + "integrity": "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.8.0", + "@scure/base": "~1.2.5" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip39/node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip39/node_modules/@scure/base": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz", + "integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/@types/babel__core": { "version": "7.20.5", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", @@ -1590,6 +1781,27 @@ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" } }, + "node_modules/abitype": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/abitype/-/abitype-1.0.8.tgz", + "integrity": "sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/wevm" + }, + "peerDependencies": { + "typescript": ">=5.0.4", + "zod": "^3 >=3.22.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "zod": { + "optional": true + } + } + }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", @@ -1944,6 +2156,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "license": "MIT" + }, "node_modules/fdir": { "version": "6.4.6", "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz", @@ -2251,6 +2469,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/isows": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/isows/-/isows-1.0.7.tgz", + "integrity": "sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "peerDependencies": { + "ws": "*" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -2325,6 +2558,31 @@ "node": ">= 0.4" } }, + "node_modules/micro-eth-signer": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/micro-eth-signer/-/micro-eth-signer-0.7.2.tgz", + "integrity": "sha512-uFH23nqPNdg2KZ9ZdvLG4GO3bTAOWRhwGTsecY4Et2IdQOJ26x6inu8lJ9oyslnYL/0o1vnETCGhMimMvO0SqQ==", + "license": "MIT", + "dependencies": { + "@ethereumjs/rlp": "5.0.0", + "@noble/curves": "~1.3.0", + "@noble/hashes": "~1.3.3", + "@scure/base": "~1.1.5", + "micro-packed": "~0.5.1" + } + }, + "node_modules/micro-packed": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/micro-packed/-/micro-packed-0.5.3.tgz", + "integrity": "sha512-zWRoH+qUb/ZMp9gVZhexvRGCENDM5HEQF4sflqpdilUHWK2/zKR7/MT8GBctnTwbhNJwy1iuk5q6+TYP7/twYA==", + "license": "MIT", + "dependencies": { + "@scure/base": "~1.1.5" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -2366,6 +2624,63 @@ "node": ">=0.10.0" } }, + "node_modules/ox": { + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/ox/-/ox-0.8.6.tgz", + "integrity": "sha512-eiKcgiVVEGDtEpEdFi1EGoVVI48j6icXHce9nFwCNM7CKG3uoCXKdr4TPhS00Iy1TR2aWSF1ltPD0x/YgqIL9w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "dependencies": { + "@adraffy/ens-normalize": "^1.11.0", + "@noble/ciphers": "^1.3.0", + "@noble/curves": "^1.9.1", + "@noble/hashes": "^1.8.0", + "@scure/bip32": "^1.7.0", + "@scure/bip39": "^1.6.0", + "abitype": "^1.0.8", + "eventemitter3": "5.0.1" + }, + "peerDependencies": { + "typescript": ">=5.4.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/ox/node_modules/@noble/curves": { + "version": "1.9.6", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.6.tgz", + "integrity": "sha512-GIKz/j99FRthB8icyJQA51E8Uk5hXmdyThjgQXRKiv9h0zeRlzSCLIzFw6K1LotZ3XuB7yzlf76qk7uBmTdFqA==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.8.0" + }, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/ox/node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -2731,7 +3046,7 @@ "version": "5.9.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", - "dev": true, + "devOptional": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -2785,6 +3100,63 @@ "which-typed-array": "^1.1.2" } }, + "node_modules/viem": { + "version": "2.33.3", + "resolved": "https://registry.npmjs.org/viem/-/viem-2.33.3.tgz", + "integrity": "sha512-aWDr6i6r3OfNCs0h9IieHFhn7xQJJ8YsuA49+9T5JRyGGAkWhLgcbLq2YMecgwM7HdUZpx1vPugZjsShqNi7Gw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/wevm" + } + ], + "license": "MIT", + "dependencies": { + "@noble/curves": "1.9.2", + "@noble/hashes": "1.8.0", + "@scure/bip32": "1.7.0", + "@scure/bip39": "1.6.0", + "abitype": "1.0.8", + "isows": "1.0.7", + "ox": "0.8.6", + "ws": "8.18.2" + }, + "peerDependencies": { + "typescript": ">=5.0.4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/viem/node_modules/@noble/curves": { + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.2.tgz", + "integrity": "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.8.0" + }, + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/viem/node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/vite": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.2.tgz", @@ -2881,6 +3253,27 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/ws": { + "version": "8.18.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz", + "integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", From e5939503cf9e1bc8e81bf7f2b54be4dfb51a9597 Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Wed, 13 Aug 2025 19:31:25 +0530 Subject: [PATCH 02/11] feat: add vercel.json --- vercel.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..ce0e4e6d --- /dev/null +++ b/vercel.json @@ -0,0 +1,12 @@ +{ + "buildCommand": "cd client && npm i && npm run generate-docs", + "outputDirectory": "client/docs", + "installCommand": "echo 'Dependencies installed during build'", + "framework": null, + "rewrites": [ + { + "source": "/(.*)", + "destination": "/index.html" + } + ] +} From 08f73c230b09cd22c99794b1e11b640df84a3c5f Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Wed, 13 Aug 2025 19:41:50 +0530 Subject: [PATCH 03/11] fix: vercel.json install and build command --- vercel.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vercel.json b/vercel.json index ce0e4e6d..6f59df95 100644 --- a/vercel.json +++ b/vercel.json @@ -1,7 +1,7 @@ { - "buildCommand": "cd client && npm i && npm run generate-docs", + "buildCommand": "npm run generate-docs", "outputDirectory": "client/docs", - "installCommand": "echo 'Dependencies installed during build'", + "installCommand": "cd client && npm install", "framework": null, "rewrites": [ { From 2975e74105c9d1112cb521959a2eaf1243f54790 Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Wed, 13 Aug 2025 19:45:09 +0530 Subject: [PATCH 04/11] fix: build command --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 6f59df95..2aa99daf 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,5 @@ { - "buildCommand": "npm run generate-docs", + "buildCommand": "cd client && npm run generate-docs", "outputDirectory": "client/docs", "installCommand": "cd client && npm install", "framework": null, From 1501efd5f21049eaed3e8131df01c0953dfb7afc Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Wed, 13 Aug 2025 19:49:26 +0530 Subject: [PATCH 05/11] refactor: remove the docs folder and let vercel generate and build those --- client/.gitignore | 3 +- client/docs/.nojekyll | 1 - client/docs/assets/hierarchy.js | 1 - client/docs/assets/highlight.css | 85 - client/docs/assets/icons.js | 18 - client/docs/assets/icons.svg | 1 - client/docs/assets/main.js | 60 - client/docs/assets/navigation.js | 1 - client/docs/assets/search.js | 1 - client/docs/assets/style.css | 1633 ----------------- client/docs/assets/typedoc-github-style.css | 434 ----- .../accounts.hdKeyToAvalancheAccount.html | 7 - .../accounts.memonicsToAvalancheAccount.html | 8 - .../accounts.parseAvalancheAccount.html | 7 - ...accounts.privateKeyToAvalancheAccount.html | 5 - .../accounts.privateKeyToXPAccount.html | 4 - .../accounts.privateKeyToXPAddress.html | 8 - .../accounts.privateKeyToXPPublicKey.html | 7 - .../accounts.publicKeyToXPAddress.html | 8 - .../accounts.xpRecoverPublicKey.html | 8 - .../functions/accounts.xpSignMessage.html | 5 - .../functions/accounts.xpSignTransaction.html | 5 - .../functions/accounts.xpVerifySignature.html | 6 - .../docs/functions/index.adminAPIActions.html | 1 - .../index.avalanchePublicActions.html | 1 - .../index.avalancheWalletActions.html | 1 - .../docs/functions/index.cChainActions.html | 1 - .../functions/index.cChainWalletActions.html | 1 - .../functions/index.createAdminApiClient.html | 80 - .../index.createAvalancheBaseClient.html | 1 - .../index.createAvalancheClient.html | 18 - .../index.createAvalancheCoreClient.html | 9 - .../index.createAvalancheTransportClient.html | 1 - .../index.createAvalancheWalletClient.html | 48 - ...index.createAvalancheWalletCoreClient.html | 1 - .../functions/index.createCChainClient.html | 43 - .../index.createHealthApiClient.html | 32 - .../functions/index.createIndexApiClient.html | 50 - .../functions/index.createInfoApiClient.html | 102 - .../functions/index.createPChainClient.html | 211 --- .../functions/index.createXChainClient.html | 99 - client/docs/functions/index.erc20Actions.html | 1 - .../functions/index.healthAPIActions.html | 1 - .../docs/functions/index.indexAPIActions.html | 1 - .../docs/functions/index.infoAPIActions.html | 1 - .../docs/functions/index.pChainActions.html | 1 - .../docs/functions/index.xChainActions.html | 1 - .../docs/functions/methods_admin.alias.html | 12 - .../functions/methods_admin.aliasChain.html | 12 - .../methods_admin.getChainAliases.html | 11 - .../methods_admin.getLoggerLevel.html | 11 - .../docs/functions/methods_admin.loadVMs.html | 10 - .../functions/methods_admin.lockProfile.html | 10 - .../methods_admin.memoryProfile.html | 10 - .../methods_admin.setLoggerLevel.html | 11 - .../methods_admin.startCPUProfiler.html | 11 - .../methods_admin.stopCPUProfiler.html | 10 - .../functions/methods_cChain.getAtomicTx.html | 11 - .../methods_cChain.getAtomicTxStatus.html | 11 - .../functions/methods_cChain.getUTXOs.html | 11 - .../functions/methods_cChain.issueTx.html | 11 - .../docs/functions/methods_health.health.html | 12 - .../functions/methods_health.liveness.html | 11 - .../functions/methods_health.readiness.html | 12 - .../methods_index.getContainerByID.html | 11 - .../methods_index.getContainerByIndex.html | 11 - .../methods_index.getContainerRange.html | 11 - .../functions/methods_index.getIndex.html | 11 - .../methods_index.getLastAccepted.html | 11 - .../functions/methods_index.isAccepted.html | 11 - client/docs/functions/methods_info.acps.html | 10 - .../methods_info.getBlockchainID.html | 11 - .../functions/methods_info.getNetworkID.html | 11 - .../methods_info.getNetworkName.html | 10 - .../functions/methods_info.getNodeID.html | 11 - .../functions/methods_info.getNodeIP.html | 10 - .../methods_info.getNodeVersion.html | 10 - .../docs/functions/methods_info.getTxFee.html | 10 - .../docs/functions/methods_info.getVMs.html | 10 - .../methods_info.isBootstrapped.html | 11 - client/docs/functions/methods_info.peers.html | 11 - .../docs/functions/methods_info.upgrades.html | 10 - .../docs/functions/methods_info.uptime.html | 11 - .../functions/methods_pChain.getBalance.html | 11 - .../functions/methods_pChain.getBlock.html | 11 - .../methods_pChain.getBlockByHeight.html | 11 - .../methods_pChain.getBlockchainStatus.html | 11 - .../methods_pChain.getBlockchains.html | 10 - .../methods_pChain.getCurrentSupply.html | 11 - .../methods_pChain.getCurrentValidators.html | 11 - .../methods_pChain.getFeeConfig.html | 10 - .../functions/methods_pChain.getFeeState.html | 10 - .../functions/methods_pChain.getHeight.html | 10 - .../methods_pChain.getL1Validator.html | 11 - .../functions/methods_pChain.getMinStake.html | 11 - .../methods_pChain.getProposedHeight.html | 10 - .../methods_pChain.getRewardUTXOs.html | 11 - .../functions/methods_pChain.getStake.html | 11 - .../methods_pChain.getStakingAssetID.html | 11 - .../functions/methods_pChain.getSubnet.html | 11 - .../functions/methods_pChain.getSubnets.html | 11 - .../methods_pChain.getTimestamp.html | 10 - .../methods_pChain.getTotalStake.html | 11 - .../docs/functions/methods_pChain.getTx.html | 11 - .../functions/methods_pChain.getTxStatus.html | 11 - .../functions/methods_pChain.getUTXOs.html | 11 - .../methods_pChain.getValidatorsAt.html | 11 - .../functions/methods_pChain.issueTx.html | 11 - .../methods_pChain.sampleValidators.html | 11 - .../functions/methods_pChain.validatedBy.html | 11 - .../functions/methods_pChain.validates.html | 11 - .../functions/methods_public.baseFee.html | 10 - .../functions/methods_public.feeConfig.html | 8 - .../methods_public.getActiveRulesAt.html | 8 - .../methods_public.getChainConfig.html | 10 - .../methods_public.maxPriorityFeePerGas.html | 10 - ...hods_wallet.addOrModifyXPAddressAlias.html | 1 - .../methods_wallet.getAccountPubKey.html | 7 - .../docs/functions/methods_wallet.send.html | 8 - .../methods_wallet.sendXPTransaction.html | 8 - .../methods_wallet.signXPMessage.html | 10 - .../methods_wallet.signXPTransaction.html | 8 - .../functions/methods_wallet.waitForTxn.html | 1 - ...ethods_wallet_cChain.prepareExportTxn.html | 9 - ...ethods_wallet_cChain.prepareImportTxn.html | 9 - ...n.prepareAddPermissionlessDelegatorTx.html | 9 - ....prepareAddPermissionlessValidatorTxn.html | 9 - ...t_pChain.prepareAddSubnetValidatorTxn.html | 9 - .../methods_wallet_pChain.prepareBaseTxn.html | 9 - ...et_pChain.prepareConvertSubnetToL1Txn.html | 9 - ...s_wallet_pChain.prepareCreateChainTxn.html | 9 - ..._wallet_pChain.prepareCreateSubnetTxn.html | 9 - ...t_pChain.prepareDisableL1ValidatorTxn.html | 9 - ...ethods_wallet_pChain.prepareExportTxn.html | 9 - ...ethods_wallet_pChain.prepareImportTxn.html | 9 - ....prepareIncreaseL1ValidatorBalanceTxn.html | 9 - ..._pChain.prepareRegisterL1ValidatorTxn.html | 9 - ...Chain.prepareRemoveSubnetValidatorTxn.html | 9 - ...pChain.prepareSetL1ValidatorWeightTxn.html | 9 - .../methods_wallet_xChain.prepareBaseTxn.html | 9 - ...ethods_wallet_xChain.prepareExportTxn.html | 9 - ...ethods_wallet_xChain.prepareImportTxn.html | 9 - .../methods_xChain.buildGenesis.html | 11 - .../methods_xChain.getAllBalances.html | 11 - .../methods_xChain.getAssetDescription.html | 11 - .../functions/methods_xChain.getBalance.html | 11 - .../functions/methods_xChain.getBlock.html | 11 - .../methods_xChain.getBlockByHeight.html | 11 - .../functions/methods_xChain.getHeight.html | 10 - .../docs/functions/methods_xChain.getTx.html | 11 - .../functions/methods_xChain.getTxFee.html | 10 - .../functions/methods_xChain.getTxStatus.html | 11 - .../functions/methods_xChain.getUTXOs.html | 11 - .../functions/methods_xChain.issueTx.html | 11 - client/docs/functions/utils.CB58ToHex.html | 7 - .../docs/functions/utils.getTxFromBytes.html | 8 - .../utils.getUnsignedTxFromBytes.html | 8 - .../functions/utils.getUtxoFromBytes.html | 8 - .../functions/utils.getUtxosForAddress.html | 8 - client/docs/functions/utils.hexToCB58.html | 7 - client/docs/hierarchy.html | 1 - client/docs/index.html | 264 --- client/docs/media/LICENSE | 21 - client/docs/modules.html | 1 - client/docs/modules/accounts.html | 21 - client/docs/modules/chains.html | 1 - client/docs/modules/index.html | 20 - client/docs/modules/methods.html | 1 - client/docs/modules/methods_admin.html | 22 - client/docs/modules/methods_cChain.html | 14 - client/docs/modules/methods_health.html | 12 - client/docs/modules/methods_index.html | 19 - client/docs/modules/methods_info.html | 33 - client/docs/modules/methods_pChain.html | 110 -- client/docs/modules/methods_public.html | 12 - client/docs/modules/methods_wallet.html | 16 - .../docs/modules/methods_wallet_cChain.html | 3 - .../docs/modules/methods_wallet_pChain.html | 17 - .../docs/modules/methods_wallet_xChain.html | 4 - client/docs/modules/methods_xChain.html | 49 - client/docs/modules/utils.html | 7 - .../docs/types/accounts.AvalancheAccount.html | 17 - ...counts.HDKeyToAvalancheAccountOptions.html | 2 - .../docs/types/accounts.LocalXPAccount.html | 9 - client/docs/types/accounts.XPAccount.html | 3 - client/docs/types/accounts.XPAddress.html | 2 - client/docs/types/index.AdminAPIActions.html | 99 - client/docs/types/index.AdminApiClient.html | 1 - .../types/index.AdminApiClientConfig.html | 1 - client/docs/types/index.AdminRpcSchema.html | 3 - .../docs/types/index.AvalancheBaseClient.html | 1 - .../index.AvalancheBaseClientConfig.html | 1 - client/docs/types/index.AvalancheClient.html | 1 - .../types/index.AvalancheClientConfig.html | 1 - .../docs/types/index.AvalancheCoreClient.html | 1 - .../index.AvalancheCoreClientConfig.html | 1 - .../types/index.AvalanchePublicActions.html | 49 - .../types/index.AvalanchePublicRpcSchema.html | 3 - .../types/index.AvalancheTransportConfig.html | 1 - .../types/index.AvalancheWalletActions.html | 57 - .../types/index.AvalancheWalletClient.html | 1 - .../index.AvalancheWalletClientConfig.html | 1 - .../index.AvalancheWalletCoreClient.html | 1 - ...index.AvalancheWalletCoreClientConfig.html | 1 - .../types/index.AvalancheWalletRpcSchema.html | 3 - client/docs/types/index.CChainActions.html | 41 - client/docs/types/index.CChainClient.html | 1 - .../docs/types/index.CChainClientConfig.html | 1 - client/docs/types/index.CChainRpcSchema.html | 3 - .../docs/types/index.CChainWalletActions.html | 19 - .../index.CreateAdminApiClientErrorType.html | 1 - ...ex.CreateAvalancheBaseClientErrorType.html | 1 - .../index.CreateAvalancheClientErrorType.html | 1 - ...ex.CreateAvalancheCoreClientErrorType.html | 1 - ....CreateAvalancheWalletClientErrorType.html | 1 - ...ateAvalancheWalletCoreClientErrorType.html | 1 - .../index.CreateCChainClientErrorType.html | 1 - .../index.CreateHealthApiClientErrorType.html | 1 - .../index.CreateIndexApiClientErrorType.html | 1 - .../index.CreateInfoApiClientErrorType.html | 1 - .../index.CreatePChainClientErrorType.html | 1 - .../index.CreateXChainClientErrorType.html | 1 - client/docs/types/index.Erc20Actions.html | 5 - client/docs/types/index.HealthAPIActions.html | 33 - client/docs/types/index.HealthApiClient.html | 1 - .../types/index.HealthApiClientConfig.html | 1 - client/docs/types/index.HealthRpcSchema.html | 3 - client/docs/types/index.IndexAPIActions.html | 61 - client/docs/types/index.IndexApiClient.html | 1 - .../types/index.IndexApiClientConfig.html | 1 - client/docs/types/index.IndexRpcSchema.html | 3 - client/docs/types/index.InfoAPIActions.html | 124 -- client/docs/types/index.InfoApiClient.html | 1 - .../docs/types/index.InfoApiClientConfig.html | 1 - client/docs/types/index.InfoRpcSchema.html | 3 - client/docs/types/index.PChainActions.html | 275 --- client/docs/types/index.PChainClient.html | 1 - .../docs/types/index.PChainClientConfig.html | 1 - client/docs/types/index.PChainRpcSchema.html | 3 - client/docs/types/index.XChainActions.html | 119 -- client/docs/types/index.XChainClient.html | 1 - .../docs/types/index.XChainClientConfig.html | 1 - client/docs/types/index.XChainRpcSchema.html | 3 - .../methods_admin.AliasChainErrorType.html | 1 - .../methods_admin.AliasChainParameters.html | 6 - .../types/methods_admin.AliasErrorType.html | 1 - .../types/methods_admin.AliasParameters.html | 6 - ...ethods_admin.GetChainAliasesErrorType.html | 1 - ...thods_admin.GetChainAliasesParameters.html | 4 - ...thods_admin.GetChainAliasesReturnType.html | 4 - ...methods_admin.GetLoggerLevelErrorType.html | 1 - ...ethods_admin.GetLoggerLevelParameters.html | 4 - ...ethods_admin.GetLoggerLevelReturnType.html | 4 - .../types/methods_admin.LoadVMsErrorType.html | 1 - .../methods_admin.LoadVMsReturnType.html | 6 - .../methods_admin.LockProfileErrorType.html | 1 - .../methods_admin.MemoryProfileErrorType.html | 1 - ...ethods_admin.SetLoggerLevelParameters.html | 8 - ...thods_admin.StartCPUProfilerErrorType.html | 1 - ...ethods_admin.StopCPUProfilerErrorType.html | 1 - .../methods_cChain.CChainAtomicTxStatus.html | 8 - .../methods_cChain.GetAtomicTxErrorType.html | 1 - .../methods_cChain.GetAtomicTxParameters.html | 6 - .../methods_cChain.GetAtomicTxReturnType.html | 8 - ...ods_cChain.GetAtomicTxStatusErrorType.html | 1 - ...ds_cChain.GetAtomicTxStatusParameters.html | 4 - ...ds_cChain.GetAtomicTxStatusReturnType.html | 6 - .../methods_cChain.GetUTXOsErrorType.html | 1 - .../methods_cChain.GetUTXOsParameters.html | 14 - .../methods_cChain.GetUTXOsReturnType.html | 9 - .../methods_cChain.IssueTxErrorType.html | 1 - .../methods_cChain.IssueTxParameters.html | 6 - .../methods_cChain.IssueTxReturnType.html | 4 - .../types/methods_health.HealthErrorType.html | 1 - .../methods_health.HealthParameters.html | 4 - .../methods_health.HealthReturnType.html | 6 - .../methods_health.LivenessErrorType.html | 1 - .../methods_health.LivenessReturnType.html | 5 - .../methods_health.ReadinessErrorType.html | 1 - .../methods_health.ReadinessParameters.html | 4 - .../methods_health.ReadinessReturnType.html | 6 - ...thods_index.GetContainerByIDErrorType.html | 1 - ...hods_index.GetContainerByIDParameters.html | 6 - ...hods_index.GetContainerByIDReturnType.html | 12 - ...ds_index.GetContainerByIndexErrorType.html | 1 - ...s_index.GetContainerByIndexParameters.html | 6 - ...s_index.GetContainerByIndexReturnType.html | 12 - ...hods_index.GetContainerRangeErrorType.html | 1 - ...ods_index.GetContainerRangeParameters.html | 8 - ...ods_index.GetContainerRangeReturnType.html | 11 - .../methods_index.GetIndexErrorType.html | 1 - .../methods_index.GetIndexParameters.html | 6 - .../methods_index.GetIndexReturnType.html | 4 - ...ethods_index.GetLastAcceptedErrorType.html | 1 - ...thods_index.GetLastAcceptedParameters.html | 4 - ...thods_index.GetLastAcceptedReturnType.html | 12 - .../methods_index.IsAcceptedErrorType.html | 1 - .../methods_index.IsAcceptedParameters.html | 6 - .../methods_index.IsAcceptedReturnType.html | 4 - .../types/methods_info.AcpsErrorType.html | 1 - .../types/methods_info.AcpsReturnType.html | 4 - ...methods_info.GetBlockchainIDErrorType.html | 1 - ...ethods_info.GetBlockchainIDParameters.html | 4 - ...ethods_info.GetBlockchainIDReturnType.html | 4 - .../methods_info.GetNetworkIDErrorType.html | 1 - .../methods_info.GetNetworkIDReturnType.html | 4 - .../methods_info.GetNetworkNameErrorType.html | 1 - ...methods_info.GetNetworkNameReturnType.html | 4 - .../methods_info.GetNodeIDErrorType.html | 1 - .../methods_info.GetNodeIDReturnType.html | 6 - .../methods_info.GetNodeIPErrorType.html | 1 - .../methods_info.GetNodeIPReturnType.html | 4 - .../methods_info.GetNodeVersionErrorType.html | 1 - ...methods_info.GetNodeVersionReturnType.html | 11 - .../types/methods_info.GetTxFeeErrorType.html | 1 - .../methods_info.GetTxFeeReturnType.html | 20 - .../types/methods_info.GetVMsErrorType.html | 1 - .../types/methods_info.GetVMsReturnType.html | 4 - .../methods_info.IsBootstrappedErrorType.html | 1 - ...methods_info.IsBootstrappedParameters.html | 4 - ...methods_info.IsBootstrappedReturnType.html | 4 - .../types/methods_info.PeersErrorType.html | 1 - .../types/methods_info.PeersParameters.html | 4 - .../types/methods_info.PeersReturnType.html | 14 - .../types/methods_info.UpgradesErrorType.html | 1 - .../methods_info.UpgradesReturnType.html | 32 - .../types/methods_info.UptimeErrorType.html | 1 - .../types/methods_info.UptimeReturnType.html | 6 - .../methods_pChain.BlockchainStatus.html | 9 - .../docs/types/methods_pChain.Encoding.html | 1 - .../methods_pChain.GetBalanceErrorType.html | 1 - .../methods_pChain.GetBalanceParameters.html | 5 - .../methods_pChain.GetBalanceReturnType.html | 14 - ...hods_pChain.GetBlockByHeightErrorType.html | 1 - ...ods_pChain.GetBlockByHeightParameters.html | 7 - ...ods_pChain.GetBlockByHeightReturnType.html | 3 - .../methods_pChain.GetBlockErrorType.html | 1 - .../methods_pChain.GetBlockParameters.html | 7 - .../methods_pChain.GetBlockReturnType.html | 3 - ...s_pChain.GetBlockchainStatusErrorType.html | 1 - ..._pChain.GetBlockchainStatusParameters.html | 5 - ..._pChain.GetBlockchainStatusReturnType.html | 4 - ...ethods_pChain.GetBlockchainsErrorType.html | 1 - ...thods_pChain.GetBlockchainsReturnType.html | 5 - ...hods_pChain.GetCurrentSupplyErrorType.html | 1 - ...ods_pChain.GetCurrentSupplyParameters.html | 5 - ...ods_pChain.GetCurrentSupplyReturnType.html | 4 - ..._pChain.GetCurrentValidatorsErrorType.html | 1 - ...pChain.GetCurrentValidatorsParameters.html | 7 - ...pChain.GetCurrentValidatorsReturnType.html | 36 - .../methods_pChain.GetFeeConfigErrorType.html | 1 - ...methods_pChain.GetFeeConfigReturnType.html | 15 - .../methods_pChain.GetFeeStateErrorType.html | 1 - .../methods_pChain.GetFeeStateReturnType.html | 11 - .../methods_pChain.GetHeightErrorType.html | 1 - .../methods_pChain.GetHeightReturnType.html | 5 - ...ethods_pChain.GetL1ValidatorErrorType.html | 1 - ...thods_pChain.GetL1ValidatorParameters.html | 5 - ...thods_pChain.GetL1ValidatorReturnType.html | 22 - .../methods_pChain.GetMinStakeErrorType.html | 1 - .../methods_pChain.GetMinStakeParameters.html | 5 - .../methods_pChain.GetMinStakeReturnType.html | 6 - ...ods_pChain.GetProposedHeightErrorType.html | 1 - ...ds_pChain.GetProposedHeightReturnType.html | 5 - ...ethods_pChain.GetRewardUTXOsErrorType.html | 1 - ...thods_pChain.GetRewardUTXOsParameters.html | 7 - ...thods_pChain.GetRewardUTXOsReturnType.html | 8 - .../methods_pChain.GetStakeErrorType.html | 1 - .../methods_pChain.GetStakeParameters.html | 7 - .../methods_pChain.GetStakeReturnType.html | 10 - ...ods_pChain.GetStakingAssetIDErrorType.html | 1 - ...ds_pChain.GetStakingAssetIDParameters.html | 5 - ...ds_pChain.GetStakingAssetIDReturnType.html | 4 - .../methods_pChain.GetSubnetErrorType.html | 1 - .../methods_pChain.GetSubnetParameters.html | 5 - .../methods_pChain.GetSubnetReturnType.html | 18 - .../methods_pChain.GetSubnetsErrorType.html | 1 - .../methods_pChain.GetSubnetsParameters.html | 5 - .../methods_pChain.GetSubnetsReturnType.html | 7 - .../methods_pChain.GetTimestampErrorType.html | 1 - ...methods_pChain.GetTimestampReturnType.html | 5 - ...methods_pChain.GetTotalStakeErrorType.html | 1 - ...ethods_pChain.GetTotalStakeParameters.html | 5 - ...ethods_pChain.GetTotalStakeReturnType.html | 6 - .../types/methods_pChain.GetTxErrorType.html | 1 - .../types/methods_pChain.GetTxParameters.html | 7 - .../types/methods_pChain.GetTxReturnType.html | 3 - .../methods_pChain.GetTxStatusErrorType.html | 1 - .../methods_pChain.GetTxStatusParameters.html | 5 - .../methods_pChain.GetTxStatusReturnType.html | 6 - .../methods_pChain.GetUTXOsErrorType.html | 1 - .../methods_pChain.GetUTXOsParameters.html | 13 - .../methods_pChain.GetUTXOsReturnType.html | 12 - ...thods_pChain.GetValidatorsAtErrorType.html | 1 - ...hods_pChain.GetValidatorsAtParameters.html | 7 - ...hods_pChain.GetValidatorsAtReturnType.html | 4 - .../methods_pChain.IssueTxErrorType.html | 1 - .../methods_pChain.IssueTxParameters.html | 7 - .../methods_pChain.IssueTxReturnType.html | 4 - .../types/methods_pChain.PChainBlockType.html | 1 - ...ethods_pChain.PChainTransactionStatus.html | 8 - .../methods_pChain.PChainTransactionType.html | 1 - ...hods_pChain.SampleValidatorsErrorType.html | 1 - ...ods_pChain.SampleValidatorsParameters.html | 7 - ...ods_pChain.SampleValidatorsReturnType.html | 4 - .../methods_pChain.ValidatedByErrorType.html | 1 - .../methods_pChain.ValidatedByParameters.html | 5 - .../methods_pChain.ValidatedByReturnType.html | 4 - .../methods_pChain.ValidatesErrorType.html | 1 - .../methods_pChain.ValidatesParameters.html | 5 - .../methods_pChain.ValidatesReturnType.html | 4 - .../methods_public.BaseFeeErrorType.html | 1 - .../types/methods_public.BaseFeeMethod.html | 4 - .../methods_public.BaseFeeReturnType.html | 3 - .../methods_public.FeeConfigErrorType.html | 1 - .../types/methods_public.FeeConfigMethod.html | 4 - .../methods_public.FeeConfigParameters.html | 4 - .../methods_public.FeeConfigReturnType.html | 6 - ...hods_public.GetActiveRulesAtErrorType.html | 1 - ...methods_public.GetActiveRulesAtMethod.html | 4 - ...ods_public.GetActiveRulesAtParameters.html | 4 - ...ods_public.GetActiveRulesAtReturnType.html | 8 - ...ethods_public.GetChainConfigErrorType.html | 1 - .../methods_public.GetChainConfigMethod.html | 4 - ...thods_public.GetChainConfigReturnType.html | 19 - ..._public.MaxPriorityFeePerGasErrorType.html | 1 - ...ods_public.MaxPriorityFeePerGasMethod.html | 4 - ...public.MaxPriorityFeePerGasReturnType.html | 3 - .../types/methods_wallet.CommonTxParams.html | 20 - ...ods_wallet.FormattedCommonAVMTxParams.html | 1 - ...ods_wallet.FormattedCommonPVMTxParams.html | 1 - ...ethods_wallet.FormattedCommonTxParams.html | 6 - ...hods_wallet.GetAccountPubKeyErrorType.html | 1 - ...ods_wallet.GetAccountPubKeyReturnType.html | 6 - client/docs/types/methods_wallet.Output.html | 11 - .../types/methods_wallet.SendErrorType.html | 1 - .../types/methods_wallet.SendParameters.html | 18 - .../types/methods_wallet.SendReturnType.html | 3 - ...ods_wallet.SendXPTransactionErrorType.html | 1 - ...ds_wallet.SendXPTransactionParameters.html | 24 - ...ds_wallet.SendXPTransactionReturnType.html | 6 - ...methods_wallet.SignXPMessageErrorType.html | 1 - ...ethods_wallet.SignXPMessageParameters.html | 8 - ...ethods_wallet.SignXPMessageReturnType.html | 4 - ...ods_wallet.SignXPTransactionErrorType.html | 1 - ...ds_wallet.SignXPTransactionParameters.html | 22 - ...ds_wallet.SignXPTransactionReturnType.html | 16 - .../docs/types/methods_wallet.Signatures.html | 6 - .../methods_wallet.StakeableOutputFull.html | 4 - .../methods_wallet.TransactionDetails.html | 6 - ...methods_wallet.TransferableOutputFull.html | 4 - .../methods_wallet.WaitForTxnErrorType.html | 1 - .../methods_wallet.WaitForTxnParameters.html | 5 - ...let_cChain.PrepareExportTxnParameters.html | 13 - ...let_cChain.PrepareExportTxnReturnType.html | 7 - ...let_cChain.PrepareImportTxnParameters.html | 17 - ...let_cChain.PrepareImportTxnReturnType.html | 7 - .../methods_wallet_pChain.ImportedOutput.html | 9 - .../methods_wallet_pChain.L1Validator.html | 19 - ...methods_wallet_pChain.PChainOwnerInfo.html | 6 - ...dPermissionlessDelegatorTxnParameters.html | 21 - ...dPermissionlessDelegatorTxnReturnType.html | 7 - ...dPermissionlessValidatorTxnParameters.html | 31 - ...dPermissionlessValidatorTxnReturnType.html | 7 - ...repareAddSubnetValidatorTxnParameters.html | 10 - ...repareAddSubnetValidatorTxnReturnType.html | 12 - ...allet_pChain.PrepareBaseTxnParameters.html | 4 - ...allet_pChain.PrepareBaseTxnReturnType.html | 7 - ...PrepareConvertSubnetToL1TxnParameters.html | 9 - ...PrepareConvertSubnetToL1TxnReturnType.html | 11 - ...Chain.PrepareCreateChainTxnParameters.html | 9 - ...Chain.PrepareCreateChainTxnReturnType.html | 11 - ...hain.PrepareCreateSubnetTxnParameters.html | 5 - ...hain.PrepareCreateSubnetTxnReturnType.html | 7 - ...repareDisableL1ValidatorTxnParameters.html | 5 - ...repareDisableL1ValidatorTxnReturnType.html | 10 - ...let_pChain.PrepareExportTxnParameters.html | 4 - ...let_pChain.PrepareExportTxnReturnType.html | 7 - ...let_pChain.PrepareImportTxnParameters.html | 6 - ...let_pChain.PrepareImportTxnReturnType.html | 7 - ...creaseL1ValidatorBalanceTxnParameters.html | 4 - ...creaseL1ValidatorBalanceTxnReturnType.html | 7 - ...epareRegisterL1ValidatorTxnParameters.html | 8 - ...epareRegisterL1ValidatorTxnReturnType.html | 7 - ...areRemoveSubnetValidatorTxnParameters.html | 6 - ...areRemoveSubnetValidatorTxnReturnType.html | 11 - ...pareSetL1ValidatorWeightTxnParameters.html | 4 - ...pareSetL1ValidatorWeightTxnReturnType.html | 7 - .../methods_wallet_pChain.SubnetOwners.html | 7 - .../methods_wallet_xChain.ImportedOutput.html | 9 - ...allet_xChain.PrepareBaseTxnParameters.html | 4 - ...allet_xChain.PrepareBaseTxnReturnType.html | 7 - ...let_xChain.PrepareExportTxnParameters.html | 4 - ...let_xChain.PrepareExportTxnReturnType.html | 7 - ...let_xChain.PrepareImportTxnParameters.html | 6 - ...let_xChain.PrepareImportTxnReturnType.html | 7 - .../methods_xChain.BuildGenesisErrorType.html | 1 - ...methods_xChain.BuildGenesisParameters.html | 15 - ...methods_xChain.BuildGenesisReturnType.html | 6 - ...ethods_xChain.GetAllBalancesErrorType.html | 1 - ...thods_xChain.GetAllBalancesParameters.html | 4 - ...thods_xChain.GetAllBalancesReturnType.html | 6 - ...s_xChain.GetAssetDescriptionErrorType.html | 1 - ..._xChain.GetAssetDescriptionParameters.html | 4 - ..._xChain.GetAssetDescriptionReturnType.html | 10 - .../methods_xChain.GetBalanceErrorType.html | 1 - .../methods_xChain.GetBalanceParameters.html | 6 - .../methods_xChain.GetBalanceReturnType.html | 8 - ...hods_xChain.GetBlockByHeightErrorType.html | 1 - ...ods_xChain.GetBlockByHeightParameters.html | 6 - ...ods_xChain.GetBlockByHeightReturnType.html | 3 - .../methods_xChain.GetBlockErrorType.html | 1 - .../methods_xChain.GetBlockParameters.html | 6 - .../methods_xChain.GetBlockReturnType.html | 3 - .../methods_xChain.GetHeightErrorType.html | 1 - .../methods_xChain.GetHeightReturnType.html | 4 - .../types/methods_xChain.GetTxErrorType.html | 1 - .../methods_xChain.GetTxFeeErrorType.html | 1 - .../methods_xChain.GetTxFeeReturnType.html | 6 - .../types/methods_xChain.GetTxParameters.html | 6 - .../types/methods_xChain.GetTxReturnType.html | 4 - .../methods_xChain.GetTxStatusErrorType.html | 1 - .../methods_xChain.GetTxStatusParameters.html | 6 - .../methods_xChain.GetTxStatusReturnType.html | 6 - .../methods_xChain.GetUTXOsErrorType.html | 1 - .../methods_xChain.GetUTXOsParameters.html | 12 - .../methods_xChain.GetUTXOsReturnType.html | 14 - .../methods_xChain.IssueTxErrorType.html | 1 - .../methods_xChain.IssueTxParameters.html | 7 - .../methods_xChain.IssueTxReturnType.html | 5 - .../types/methods_xChain.XChainBlockType.html | 13 - ...ethods_xChain.XChainTransactionStatus.html | 8 - .../methods_xChain.XChainTransactionType.html | 16 - .../types/utils.GetUtxosForAddressParams.html | 4 - client/docs/variables/chains.avalanche.html | 7 - .../docs/variables/chains.avalancheFuji.html | 8 - .../docs/variables/methods.C_CHAIN_ALIAS.html | 1 - .../variables/methods.C_CHAIN_FUJI_ID.html | 1 - .../variables/methods.C_CHAIN_MAINNET_ID.html | 1 - .../variables/methods.MAINNET_NETWORK_ID.html | 1 - .../docs/variables/methods.P_CHAIN_ALIAS.html | 1 - .../variables/methods.P_CHAIN_FUJI_ID.html | 1 - .../variables/methods.P_CHAIN_MAINNET_ID.html | 1 - .../variables/methods.TESTNET_NETWORK_ID.html | 1 - .../docs/variables/methods.X_CHAIN_ALIAS.html | 1 - .../variables/methods.X_CHAIN_FUJI_ID.html | 1 - .../variables/methods.X_CHAIN_MAINNET_ID.html | 1 - client/typedoc.json | 2 +- vercel.json | 2 +- 549 files changed, 4 insertions(+), 7427 deletions(-) delete mode 100644 client/docs/.nojekyll delete mode 100644 client/docs/assets/hierarchy.js delete mode 100644 client/docs/assets/highlight.css delete mode 100644 client/docs/assets/icons.js delete mode 100644 client/docs/assets/icons.svg delete mode 100644 client/docs/assets/main.js delete mode 100644 client/docs/assets/navigation.js delete mode 100644 client/docs/assets/search.js delete mode 100644 client/docs/assets/style.css delete mode 100644 client/docs/assets/typedoc-github-style.css delete mode 100644 client/docs/functions/accounts.hdKeyToAvalancheAccount.html delete mode 100644 client/docs/functions/accounts.memonicsToAvalancheAccount.html delete mode 100644 client/docs/functions/accounts.parseAvalancheAccount.html delete mode 100644 client/docs/functions/accounts.privateKeyToAvalancheAccount.html delete mode 100644 client/docs/functions/accounts.privateKeyToXPAccount.html delete mode 100644 client/docs/functions/accounts.privateKeyToXPAddress.html delete mode 100644 client/docs/functions/accounts.privateKeyToXPPublicKey.html delete mode 100644 client/docs/functions/accounts.publicKeyToXPAddress.html delete mode 100644 client/docs/functions/accounts.xpRecoverPublicKey.html delete mode 100644 client/docs/functions/accounts.xpSignMessage.html delete mode 100644 client/docs/functions/accounts.xpSignTransaction.html delete mode 100644 client/docs/functions/accounts.xpVerifySignature.html delete mode 100644 client/docs/functions/index.adminAPIActions.html delete mode 100644 client/docs/functions/index.avalanchePublicActions.html delete mode 100644 client/docs/functions/index.avalancheWalletActions.html delete mode 100644 client/docs/functions/index.cChainActions.html delete mode 100644 client/docs/functions/index.cChainWalletActions.html delete mode 100644 client/docs/functions/index.createAdminApiClient.html delete mode 100644 client/docs/functions/index.createAvalancheBaseClient.html delete mode 100644 client/docs/functions/index.createAvalancheClient.html delete mode 100644 client/docs/functions/index.createAvalancheCoreClient.html delete mode 100644 client/docs/functions/index.createAvalancheTransportClient.html delete mode 100644 client/docs/functions/index.createAvalancheWalletClient.html delete mode 100644 client/docs/functions/index.createAvalancheWalletCoreClient.html delete mode 100644 client/docs/functions/index.createCChainClient.html delete mode 100644 client/docs/functions/index.createHealthApiClient.html delete mode 100644 client/docs/functions/index.createIndexApiClient.html delete mode 100644 client/docs/functions/index.createInfoApiClient.html delete mode 100644 client/docs/functions/index.createPChainClient.html delete mode 100644 client/docs/functions/index.createXChainClient.html delete mode 100644 client/docs/functions/index.erc20Actions.html delete mode 100644 client/docs/functions/index.healthAPIActions.html delete mode 100644 client/docs/functions/index.indexAPIActions.html delete mode 100644 client/docs/functions/index.infoAPIActions.html delete mode 100644 client/docs/functions/index.pChainActions.html delete mode 100644 client/docs/functions/index.xChainActions.html delete mode 100644 client/docs/functions/methods_admin.alias.html delete mode 100644 client/docs/functions/methods_admin.aliasChain.html delete mode 100644 client/docs/functions/methods_admin.getChainAliases.html delete mode 100644 client/docs/functions/methods_admin.getLoggerLevel.html delete mode 100644 client/docs/functions/methods_admin.loadVMs.html delete mode 100644 client/docs/functions/methods_admin.lockProfile.html delete mode 100644 client/docs/functions/methods_admin.memoryProfile.html delete mode 100644 client/docs/functions/methods_admin.setLoggerLevel.html delete mode 100644 client/docs/functions/methods_admin.startCPUProfiler.html delete mode 100644 client/docs/functions/methods_admin.stopCPUProfiler.html delete mode 100644 client/docs/functions/methods_cChain.getAtomicTx.html delete mode 100644 client/docs/functions/methods_cChain.getAtomicTxStatus.html delete mode 100644 client/docs/functions/methods_cChain.getUTXOs.html delete mode 100644 client/docs/functions/methods_cChain.issueTx.html delete mode 100644 client/docs/functions/methods_health.health.html delete mode 100644 client/docs/functions/methods_health.liveness.html delete mode 100644 client/docs/functions/methods_health.readiness.html delete mode 100644 client/docs/functions/methods_index.getContainerByID.html delete mode 100644 client/docs/functions/methods_index.getContainerByIndex.html delete mode 100644 client/docs/functions/methods_index.getContainerRange.html delete mode 100644 client/docs/functions/methods_index.getIndex.html delete mode 100644 client/docs/functions/methods_index.getLastAccepted.html delete mode 100644 client/docs/functions/methods_index.isAccepted.html delete mode 100644 client/docs/functions/methods_info.acps.html delete mode 100644 client/docs/functions/methods_info.getBlockchainID.html delete mode 100644 client/docs/functions/methods_info.getNetworkID.html delete mode 100644 client/docs/functions/methods_info.getNetworkName.html delete mode 100644 client/docs/functions/methods_info.getNodeID.html delete mode 100644 client/docs/functions/methods_info.getNodeIP.html delete mode 100644 client/docs/functions/methods_info.getNodeVersion.html delete mode 100644 client/docs/functions/methods_info.getTxFee.html delete mode 100644 client/docs/functions/methods_info.getVMs.html delete mode 100644 client/docs/functions/methods_info.isBootstrapped.html delete mode 100644 client/docs/functions/methods_info.peers.html delete mode 100644 client/docs/functions/methods_info.upgrades.html delete mode 100644 client/docs/functions/methods_info.uptime.html delete mode 100644 client/docs/functions/methods_pChain.getBalance.html delete mode 100644 client/docs/functions/methods_pChain.getBlock.html delete mode 100644 client/docs/functions/methods_pChain.getBlockByHeight.html delete mode 100644 client/docs/functions/methods_pChain.getBlockchainStatus.html delete mode 100644 client/docs/functions/methods_pChain.getBlockchains.html delete mode 100644 client/docs/functions/methods_pChain.getCurrentSupply.html delete mode 100644 client/docs/functions/methods_pChain.getCurrentValidators.html delete mode 100644 client/docs/functions/methods_pChain.getFeeConfig.html delete mode 100644 client/docs/functions/methods_pChain.getFeeState.html delete mode 100644 client/docs/functions/methods_pChain.getHeight.html delete mode 100644 client/docs/functions/methods_pChain.getL1Validator.html delete mode 100644 client/docs/functions/methods_pChain.getMinStake.html delete mode 100644 client/docs/functions/methods_pChain.getProposedHeight.html delete mode 100644 client/docs/functions/methods_pChain.getRewardUTXOs.html delete mode 100644 client/docs/functions/methods_pChain.getStake.html delete mode 100644 client/docs/functions/methods_pChain.getStakingAssetID.html delete mode 100644 client/docs/functions/methods_pChain.getSubnet.html delete mode 100644 client/docs/functions/methods_pChain.getSubnets.html delete mode 100644 client/docs/functions/methods_pChain.getTimestamp.html delete mode 100644 client/docs/functions/methods_pChain.getTotalStake.html delete mode 100644 client/docs/functions/methods_pChain.getTx.html delete mode 100644 client/docs/functions/methods_pChain.getTxStatus.html delete mode 100644 client/docs/functions/methods_pChain.getUTXOs.html delete mode 100644 client/docs/functions/methods_pChain.getValidatorsAt.html delete mode 100644 client/docs/functions/methods_pChain.issueTx.html delete mode 100644 client/docs/functions/methods_pChain.sampleValidators.html delete mode 100644 client/docs/functions/methods_pChain.validatedBy.html delete mode 100644 client/docs/functions/methods_pChain.validates.html delete mode 100644 client/docs/functions/methods_public.baseFee.html delete mode 100644 client/docs/functions/methods_public.feeConfig.html delete mode 100644 client/docs/functions/methods_public.getActiveRulesAt.html delete mode 100644 client/docs/functions/methods_public.getChainConfig.html delete mode 100644 client/docs/functions/methods_public.maxPriorityFeePerGas.html delete mode 100644 client/docs/functions/methods_wallet.addOrModifyXPAddressAlias.html delete mode 100644 client/docs/functions/methods_wallet.getAccountPubKey.html delete mode 100644 client/docs/functions/methods_wallet.send.html delete mode 100644 client/docs/functions/methods_wallet.sendXPTransaction.html delete mode 100644 client/docs/functions/methods_wallet.signXPMessage.html delete mode 100644 client/docs/functions/methods_wallet.signXPTransaction.html delete mode 100644 client/docs/functions/methods_wallet.waitForTxn.html delete mode 100644 client/docs/functions/methods_wallet_cChain.prepareExportTxn.html delete mode 100644 client/docs/functions/methods_wallet_cChain.prepareImportTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessDelegatorTx.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessValidatorTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareAddSubnetValidatorTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareBaseTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareConvertSubnetToL1Txn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareCreateChainTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareCreateSubnetTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareDisableL1ValidatorTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareExportTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareImportTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareIncreaseL1ValidatorBalanceTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareRegisterL1ValidatorTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareRemoveSubnetValidatorTxn.html delete mode 100644 client/docs/functions/methods_wallet_pChain.prepareSetL1ValidatorWeightTxn.html delete mode 100644 client/docs/functions/methods_wallet_xChain.prepareBaseTxn.html delete mode 100644 client/docs/functions/methods_wallet_xChain.prepareExportTxn.html delete mode 100644 client/docs/functions/methods_wallet_xChain.prepareImportTxn.html delete mode 100644 client/docs/functions/methods_xChain.buildGenesis.html delete mode 100644 client/docs/functions/methods_xChain.getAllBalances.html delete mode 100644 client/docs/functions/methods_xChain.getAssetDescription.html delete mode 100644 client/docs/functions/methods_xChain.getBalance.html delete mode 100644 client/docs/functions/methods_xChain.getBlock.html delete mode 100644 client/docs/functions/methods_xChain.getBlockByHeight.html delete mode 100644 client/docs/functions/methods_xChain.getHeight.html delete mode 100644 client/docs/functions/methods_xChain.getTx.html delete mode 100644 client/docs/functions/methods_xChain.getTxFee.html delete mode 100644 client/docs/functions/methods_xChain.getTxStatus.html delete mode 100644 client/docs/functions/methods_xChain.getUTXOs.html delete mode 100644 client/docs/functions/methods_xChain.issueTx.html delete mode 100644 client/docs/functions/utils.CB58ToHex.html delete mode 100644 client/docs/functions/utils.getTxFromBytes.html delete mode 100644 client/docs/functions/utils.getUnsignedTxFromBytes.html delete mode 100644 client/docs/functions/utils.getUtxoFromBytes.html delete mode 100644 client/docs/functions/utils.getUtxosForAddress.html delete mode 100644 client/docs/functions/utils.hexToCB58.html delete mode 100644 client/docs/hierarchy.html delete mode 100644 client/docs/index.html delete mode 100644 client/docs/media/LICENSE delete mode 100644 client/docs/modules.html delete mode 100644 client/docs/modules/accounts.html delete mode 100644 client/docs/modules/chains.html delete mode 100644 client/docs/modules/index.html delete mode 100644 client/docs/modules/methods.html delete mode 100644 client/docs/modules/methods_admin.html delete mode 100644 client/docs/modules/methods_cChain.html delete mode 100644 client/docs/modules/methods_health.html delete mode 100644 client/docs/modules/methods_index.html delete mode 100644 client/docs/modules/methods_info.html delete mode 100644 client/docs/modules/methods_pChain.html delete mode 100644 client/docs/modules/methods_public.html delete mode 100644 client/docs/modules/methods_wallet.html delete mode 100644 client/docs/modules/methods_wallet_cChain.html delete mode 100644 client/docs/modules/methods_wallet_pChain.html delete mode 100644 client/docs/modules/methods_wallet_xChain.html delete mode 100644 client/docs/modules/methods_xChain.html delete mode 100644 client/docs/modules/utils.html delete mode 100644 client/docs/types/accounts.AvalancheAccount.html delete mode 100644 client/docs/types/accounts.HDKeyToAvalancheAccountOptions.html delete mode 100644 client/docs/types/accounts.LocalXPAccount.html delete mode 100644 client/docs/types/accounts.XPAccount.html delete mode 100644 client/docs/types/accounts.XPAddress.html delete mode 100644 client/docs/types/index.AdminAPIActions.html delete mode 100644 client/docs/types/index.AdminApiClient.html delete mode 100644 client/docs/types/index.AdminApiClientConfig.html delete mode 100644 client/docs/types/index.AdminRpcSchema.html delete mode 100644 client/docs/types/index.AvalancheBaseClient.html delete mode 100644 client/docs/types/index.AvalancheBaseClientConfig.html delete mode 100644 client/docs/types/index.AvalancheClient.html delete mode 100644 client/docs/types/index.AvalancheClientConfig.html delete mode 100644 client/docs/types/index.AvalancheCoreClient.html delete mode 100644 client/docs/types/index.AvalancheCoreClientConfig.html delete mode 100644 client/docs/types/index.AvalanchePublicActions.html delete mode 100644 client/docs/types/index.AvalanchePublicRpcSchema.html delete mode 100644 client/docs/types/index.AvalancheTransportConfig.html delete mode 100644 client/docs/types/index.AvalancheWalletActions.html delete mode 100644 client/docs/types/index.AvalancheWalletClient.html delete mode 100644 client/docs/types/index.AvalancheWalletClientConfig.html delete mode 100644 client/docs/types/index.AvalancheWalletCoreClient.html delete mode 100644 client/docs/types/index.AvalancheWalletCoreClientConfig.html delete mode 100644 client/docs/types/index.AvalancheWalletRpcSchema.html delete mode 100644 client/docs/types/index.CChainActions.html delete mode 100644 client/docs/types/index.CChainClient.html delete mode 100644 client/docs/types/index.CChainClientConfig.html delete mode 100644 client/docs/types/index.CChainRpcSchema.html delete mode 100644 client/docs/types/index.CChainWalletActions.html delete mode 100644 client/docs/types/index.CreateAdminApiClientErrorType.html delete mode 100644 client/docs/types/index.CreateAvalancheBaseClientErrorType.html delete mode 100644 client/docs/types/index.CreateAvalancheClientErrorType.html delete mode 100644 client/docs/types/index.CreateAvalancheCoreClientErrorType.html delete mode 100644 client/docs/types/index.CreateAvalancheWalletClientErrorType.html delete mode 100644 client/docs/types/index.CreateAvalancheWalletCoreClientErrorType.html delete mode 100644 client/docs/types/index.CreateCChainClientErrorType.html delete mode 100644 client/docs/types/index.CreateHealthApiClientErrorType.html delete mode 100644 client/docs/types/index.CreateIndexApiClientErrorType.html delete mode 100644 client/docs/types/index.CreateInfoApiClientErrorType.html delete mode 100644 client/docs/types/index.CreatePChainClientErrorType.html delete mode 100644 client/docs/types/index.CreateXChainClientErrorType.html delete mode 100644 client/docs/types/index.Erc20Actions.html delete mode 100644 client/docs/types/index.HealthAPIActions.html delete mode 100644 client/docs/types/index.HealthApiClient.html delete mode 100644 client/docs/types/index.HealthApiClientConfig.html delete mode 100644 client/docs/types/index.HealthRpcSchema.html delete mode 100644 client/docs/types/index.IndexAPIActions.html delete mode 100644 client/docs/types/index.IndexApiClient.html delete mode 100644 client/docs/types/index.IndexApiClientConfig.html delete mode 100644 client/docs/types/index.IndexRpcSchema.html delete mode 100644 client/docs/types/index.InfoAPIActions.html delete mode 100644 client/docs/types/index.InfoApiClient.html delete mode 100644 client/docs/types/index.InfoApiClientConfig.html delete mode 100644 client/docs/types/index.InfoRpcSchema.html delete mode 100644 client/docs/types/index.PChainActions.html delete mode 100644 client/docs/types/index.PChainClient.html delete mode 100644 client/docs/types/index.PChainClientConfig.html delete mode 100644 client/docs/types/index.PChainRpcSchema.html delete mode 100644 client/docs/types/index.XChainActions.html delete mode 100644 client/docs/types/index.XChainClient.html delete mode 100644 client/docs/types/index.XChainClientConfig.html delete mode 100644 client/docs/types/index.XChainRpcSchema.html delete mode 100644 client/docs/types/methods_admin.AliasChainErrorType.html delete mode 100644 client/docs/types/methods_admin.AliasChainParameters.html delete mode 100644 client/docs/types/methods_admin.AliasErrorType.html delete mode 100644 client/docs/types/methods_admin.AliasParameters.html delete mode 100644 client/docs/types/methods_admin.GetChainAliasesErrorType.html delete mode 100644 client/docs/types/methods_admin.GetChainAliasesParameters.html delete mode 100644 client/docs/types/methods_admin.GetChainAliasesReturnType.html delete mode 100644 client/docs/types/methods_admin.GetLoggerLevelErrorType.html delete mode 100644 client/docs/types/methods_admin.GetLoggerLevelParameters.html delete mode 100644 client/docs/types/methods_admin.GetLoggerLevelReturnType.html delete mode 100644 client/docs/types/methods_admin.LoadVMsErrorType.html delete mode 100644 client/docs/types/methods_admin.LoadVMsReturnType.html delete mode 100644 client/docs/types/methods_admin.LockProfileErrorType.html delete mode 100644 client/docs/types/methods_admin.MemoryProfileErrorType.html delete mode 100644 client/docs/types/methods_admin.SetLoggerLevelParameters.html delete mode 100644 client/docs/types/methods_admin.StartCPUProfilerErrorType.html delete mode 100644 client/docs/types/methods_admin.StopCPUProfilerErrorType.html delete mode 100644 client/docs/types/methods_cChain.CChainAtomicTxStatus.html delete mode 100644 client/docs/types/methods_cChain.GetAtomicTxErrorType.html delete mode 100644 client/docs/types/methods_cChain.GetAtomicTxParameters.html delete mode 100644 client/docs/types/methods_cChain.GetAtomicTxReturnType.html delete mode 100644 client/docs/types/methods_cChain.GetAtomicTxStatusErrorType.html delete mode 100644 client/docs/types/methods_cChain.GetAtomicTxStatusParameters.html delete mode 100644 client/docs/types/methods_cChain.GetAtomicTxStatusReturnType.html delete mode 100644 client/docs/types/methods_cChain.GetUTXOsErrorType.html delete mode 100644 client/docs/types/methods_cChain.GetUTXOsParameters.html delete mode 100644 client/docs/types/methods_cChain.GetUTXOsReturnType.html delete mode 100644 client/docs/types/methods_cChain.IssueTxErrorType.html delete mode 100644 client/docs/types/methods_cChain.IssueTxParameters.html delete mode 100644 client/docs/types/methods_cChain.IssueTxReturnType.html delete mode 100644 client/docs/types/methods_health.HealthErrorType.html delete mode 100644 client/docs/types/methods_health.HealthParameters.html delete mode 100644 client/docs/types/methods_health.HealthReturnType.html delete mode 100644 client/docs/types/methods_health.LivenessErrorType.html delete mode 100644 client/docs/types/methods_health.LivenessReturnType.html delete mode 100644 client/docs/types/methods_health.ReadinessErrorType.html delete mode 100644 client/docs/types/methods_health.ReadinessParameters.html delete mode 100644 client/docs/types/methods_health.ReadinessReturnType.html delete mode 100644 client/docs/types/methods_index.GetContainerByIDErrorType.html delete mode 100644 client/docs/types/methods_index.GetContainerByIDParameters.html delete mode 100644 client/docs/types/methods_index.GetContainerByIDReturnType.html delete mode 100644 client/docs/types/methods_index.GetContainerByIndexErrorType.html delete mode 100644 client/docs/types/methods_index.GetContainerByIndexParameters.html delete mode 100644 client/docs/types/methods_index.GetContainerByIndexReturnType.html delete mode 100644 client/docs/types/methods_index.GetContainerRangeErrorType.html delete mode 100644 client/docs/types/methods_index.GetContainerRangeParameters.html delete mode 100644 client/docs/types/methods_index.GetContainerRangeReturnType.html delete mode 100644 client/docs/types/methods_index.GetIndexErrorType.html delete mode 100644 client/docs/types/methods_index.GetIndexParameters.html delete mode 100644 client/docs/types/methods_index.GetIndexReturnType.html delete mode 100644 client/docs/types/methods_index.GetLastAcceptedErrorType.html delete mode 100644 client/docs/types/methods_index.GetLastAcceptedParameters.html delete mode 100644 client/docs/types/methods_index.GetLastAcceptedReturnType.html delete mode 100644 client/docs/types/methods_index.IsAcceptedErrorType.html delete mode 100644 client/docs/types/methods_index.IsAcceptedParameters.html delete mode 100644 client/docs/types/methods_index.IsAcceptedReturnType.html delete mode 100644 client/docs/types/methods_info.AcpsErrorType.html delete mode 100644 client/docs/types/methods_info.AcpsReturnType.html delete mode 100644 client/docs/types/methods_info.GetBlockchainIDErrorType.html delete mode 100644 client/docs/types/methods_info.GetBlockchainIDParameters.html delete mode 100644 client/docs/types/methods_info.GetBlockchainIDReturnType.html delete mode 100644 client/docs/types/methods_info.GetNetworkIDErrorType.html delete mode 100644 client/docs/types/methods_info.GetNetworkIDReturnType.html delete mode 100644 client/docs/types/methods_info.GetNetworkNameErrorType.html delete mode 100644 client/docs/types/methods_info.GetNetworkNameReturnType.html delete mode 100644 client/docs/types/methods_info.GetNodeIDErrorType.html delete mode 100644 client/docs/types/methods_info.GetNodeIDReturnType.html delete mode 100644 client/docs/types/methods_info.GetNodeIPErrorType.html delete mode 100644 client/docs/types/methods_info.GetNodeIPReturnType.html delete mode 100644 client/docs/types/methods_info.GetNodeVersionErrorType.html delete mode 100644 client/docs/types/methods_info.GetNodeVersionReturnType.html delete mode 100644 client/docs/types/methods_info.GetTxFeeErrorType.html delete mode 100644 client/docs/types/methods_info.GetTxFeeReturnType.html delete mode 100644 client/docs/types/methods_info.GetVMsErrorType.html delete mode 100644 client/docs/types/methods_info.GetVMsReturnType.html delete mode 100644 client/docs/types/methods_info.IsBootstrappedErrorType.html delete mode 100644 client/docs/types/methods_info.IsBootstrappedParameters.html delete mode 100644 client/docs/types/methods_info.IsBootstrappedReturnType.html delete mode 100644 client/docs/types/methods_info.PeersErrorType.html delete mode 100644 client/docs/types/methods_info.PeersParameters.html delete mode 100644 client/docs/types/methods_info.PeersReturnType.html delete mode 100644 client/docs/types/methods_info.UpgradesErrorType.html delete mode 100644 client/docs/types/methods_info.UpgradesReturnType.html delete mode 100644 client/docs/types/methods_info.UptimeErrorType.html delete mode 100644 client/docs/types/methods_info.UptimeReturnType.html delete mode 100644 client/docs/types/methods_pChain.BlockchainStatus.html delete mode 100644 client/docs/types/methods_pChain.Encoding.html delete mode 100644 client/docs/types/methods_pChain.GetBalanceErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetBalanceParameters.html delete mode 100644 client/docs/types/methods_pChain.GetBalanceReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockByHeightErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockByHeightParameters.html delete mode 100644 client/docs/types/methods_pChain.GetBlockByHeightReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockParameters.html delete mode 100644 client/docs/types/methods_pChain.GetBlockReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockchainStatusErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockchainStatusParameters.html delete mode 100644 client/docs/types/methods_pChain.GetBlockchainStatusReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockchainsErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetBlockchainsReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetCurrentSupplyErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetCurrentSupplyParameters.html delete mode 100644 client/docs/types/methods_pChain.GetCurrentSupplyReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetCurrentValidatorsErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetCurrentValidatorsParameters.html delete mode 100644 client/docs/types/methods_pChain.GetCurrentValidatorsReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetFeeConfigErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetFeeConfigReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetFeeStateErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetFeeStateReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetHeightErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetHeightReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetL1ValidatorErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetL1ValidatorParameters.html delete mode 100644 client/docs/types/methods_pChain.GetL1ValidatorReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetMinStakeErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetMinStakeParameters.html delete mode 100644 client/docs/types/methods_pChain.GetMinStakeReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetProposedHeightErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetProposedHeightReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetRewardUTXOsErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetRewardUTXOsParameters.html delete mode 100644 client/docs/types/methods_pChain.GetRewardUTXOsReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetStakeErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetStakeParameters.html delete mode 100644 client/docs/types/methods_pChain.GetStakeReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetStakingAssetIDErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetStakingAssetIDParameters.html delete mode 100644 client/docs/types/methods_pChain.GetStakingAssetIDReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetSubnetErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetSubnetParameters.html delete mode 100644 client/docs/types/methods_pChain.GetSubnetReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetSubnetsErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetSubnetsParameters.html delete mode 100644 client/docs/types/methods_pChain.GetSubnetsReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetTimestampErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetTimestampReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetTotalStakeErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetTotalStakeParameters.html delete mode 100644 client/docs/types/methods_pChain.GetTotalStakeReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetTxErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetTxParameters.html delete mode 100644 client/docs/types/methods_pChain.GetTxReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetTxStatusErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetTxStatusParameters.html delete mode 100644 client/docs/types/methods_pChain.GetTxStatusReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetUTXOsErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetUTXOsParameters.html delete mode 100644 client/docs/types/methods_pChain.GetUTXOsReturnType.html delete mode 100644 client/docs/types/methods_pChain.GetValidatorsAtErrorType.html delete mode 100644 client/docs/types/methods_pChain.GetValidatorsAtParameters.html delete mode 100644 client/docs/types/methods_pChain.GetValidatorsAtReturnType.html delete mode 100644 client/docs/types/methods_pChain.IssueTxErrorType.html delete mode 100644 client/docs/types/methods_pChain.IssueTxParameters.html delete mode 100644 client/docs/types/methods_pChain.IssueTxReturnType.html delete mode 100644 client/docs/types/methods_pChain.PChainBlockType.html delete mode 100644 client/docs/types/methods_pChain.PChainTransactionStatus.html delete mode 100644 client/docs/types/methods_pChain.PChainTransactionType.html delete mode 100644 client/docs/types/methods_pChain.SampleValidatorsErrorType.html delete mode 100644 client/docs/types/methods_pChain.SampleValidatorsParameters.html delete mode 100644 client/docs/types/methods_pChain.SampleValidatorsReturnType.html delete mode 100644 client/docs/types/methods_pChain.ValidatedByErrorType.html delete mode 100644 client/docs/types/methods_pChain.ValidatedByParameters.html delete mode 100644 client/docs/types/methods_pChain.ValidatedByReturnType.html delete mode 100644 client/docs/types/methods_pChain.ValidatesErrorType.html delete mode 100644 client/docs/types/methods_pChain.ValidatesParameters.html delete mode 100644 client/docs/types/methods_pChain.ValidatesReturnType.html delete mode 100644 client/docs/types/methods_public.BaseFeeErrorType.html delete mode 100644 client/docs/types/methods_public.BaseFeeMethod.html delete mode 100644 client/docs/types/methods_public.BaseFeeReturnType.html delete mode 100644 client/docs/types/methods_public.FeeConfigErrorType.html delete mode 100644 client/docs/types/methods_public.FeeConfigMethod.html delete mode 100644 client/docs/types/methods_public.FeeConfigParameters.html delete mode 100644 client/docs/types/methods_public.FeeConfigReturnType.html delete mode 100644 client/docs/types/methods_public.GetActiveRulesAtErrorType.html delete mode 100644 client/docs/types/methods_public.GetActiveRulesAtMethod.html delete mode 100644 client/docs/types/methods_public.GetActiveRulesAtParameters.html delete mode 100644 client/docs/types/methods_public.GetActiveRulesAtReturnType.html delete mode 100644 client/docs/types/methods_public.GetChainConfigErrorType.html delete mode 100644 client/docs/types/methods_public.GetChainConfigMethod.html delete mode 100644 client/docs/types/methods_public.GetChainConfigReturnType.html delete mode 100644 client/docs/types/methods_public.MaxPriorityFeePerGasErrorType.html delete mode 100644 client/docs/types/methods_public.MaxPriorityFeePerGasMethod.html delete mode 100644 client/docs/types/methods_public.MaxPriorityFeePerGasReturnType.html delete mode 100644 client/docs/types/methods_wallet.CommonTxParams.html delete mode 100644 client/docs/types/methods_wallet.FormattedCommonAVMTxParams.html delete mode 100644 client/docs/types/methods_wallet.FormattedCommonPVMTxParams.html delete mode 100644 client/docs/types/methods_wallet.FormattedCommonTxParams.html delete mode 100644 client/docs/types/methods_wallet.GetAccountPubKeyErrorType.html delete mode 100644 client/docs/types/methods_wallet.GetAccountPubKeyReturnType.html delete mode 100644 client/docs/types/methods_wallet.Output.html delete mode 100644 client/docs/types/methods_wallet.SendErrorType.html delete mode 100644 client/docs/types/methods_wallet.SendParameters.html delete mode 100644 client/docs/types/methods_wallet.SendReturnType.html delete mode 100644 client/docs/types/methods_wallet.SendXPTransactionErrorType.html delete mode 100644 client/docs/types/methods_wallet.SendXPTransactionParameters.html delete mode 100644 client/docs/types/methods_wallet.SendXPTransactionReturnType.html delete mode 100644 client/docs/types/methods_wallet.SignXPMessageErrorType.html delete mode 100644 client/docs/types/methods_wallet.SignXPMessageParameters.html delete mode 100644 client/docs/types/methods_wallet.SignXPMessageReturnType.html delete mode 100644 client/docs/types/methods_wallet.SignXPTransactionErrorType.html delete mode 100644 client/docs/types/methods_wallet.SignXPTransactionParameters.html delete mode 100644 client/docs/types/methods_wallet.SignXPTransactionReturnType.html delete mode 100644 client/docs/types/methods_wallet.Signatures.html delete mode 100644 client/docs/types/methods_wallet.StakeableOutputFull.html delete mode 100644 client/docs/types/methods_wallet.TransactionDetails.html delete mode 100644 client/docs/types/methods_wallet.TransferableOutputFull.html delete mode 100644 client/docs/types/methods_wallet.WaitForTxnErrorType.html delete mode 100644 client/docs/types/methods_wallet.WaitForTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_cChain.PrepareExportTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_cChain.PrepareExportTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_cChain.PrepareImportTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_cChain.PrepareImportTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.ImportedOutput.html delete mode 100644 client/docs/types/methods_wallet_pChain.L1Validator.html delete mode 100644 client/docs/types/methods_wallet_pChain.PChainOwnerInfo.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareBaseTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareBaseTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareExportTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareExportTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareImportTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareImportTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_pChain.SubnetOwners.html delete mode 100644 client/docs/types/methods_wallet_xChain.ImportedOutput.html delete mode 100644 client/docs/types/methods_wallet_xChain.PrepareBaseTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_xChain.PrepareBaseTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_xChain.PrepareExportTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_xChain.PrepareExportTxnReturnType.html delete mode 100644 client/docs/types/methods_wallet_xChain.PrepareImportTxnParameters.html delete mode 100644 client/docs/types/methods_wallet_xChain.PrepareImportTxnReturnType.html delete mode 100644 client/docs/types/methods_xChain.BuildGenesisErrorType.html delete mode 100644 client/docs/types/methods_xChain.BuildGenesisParameters.html delete mode 100644 client/docs/types/methods_xChain.BuildGenesisReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetAllBalancesErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetAllBalancesParameters.html delete mode 100644 client/docs/types/methods_xChain.GetAllBalancesReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetAssetDescriptionErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetAssetDescriptionParameters.html delete mode 100644 client/docs/types/methods_xChain.GetAssetDescriptionReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetBalanceErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetBalanceParameters.html delete mode 100644 client/docs/types/methods_xChain.GetBalanceReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetBlockByHeightErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetBlockByHeightParameters.html delete mode 100644 client/docs/types/methods_xChain.GetBlockByHeightReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetBlockErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetBlockParameters.html delete mode 100644 client/docs/types/methods_xChain.GetBlockReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetHeightErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetHeightReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetTxErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetTxFeeErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetTxFeeReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetTxParameters.html delete mode 100644 client/docs/types/methods_xChain.GetTxReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetTxStatusErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetTxStatusParameters.html delete mode 100644 client/docs/types/methods_xChain.GetTxStatusReturnType.html delete mode 100644 client/docs/types/methods_xChain.GetUTXOsErrorType.html delete mode 100644 client/docs/types/methods_xChain.GetUTXOsParameters.html delete mode 100644 client/docs/types/methods_xChain.GetUTXOsReturnType.html delete mode 100644 client/docs/types/methods_xChain.IssueTxErrorType.html delete mode 100644 client/docs/types/methods_xChain.IssueTxParameters.html delete mode 100644 client/docs/types/methods_xChain.IssueTxReturnType.html delete mode 100644 client/docs/types/methods_xChain.XChainBlockType.html delete mode 100644 client/docs/types/methods_xChain.XChainTransactionStatus.html delete mode 100644 client/docs/types/methods_xChain.XChainTransactionType.html delete mode 100644 client/docs/types/utils.GetUtxosForAddressParams.html delete mode 100644 client/docs/variables/chains.avalanche.html delete mode 100644 client/docs/variables/chains.avalancheFuji.html delete mode 100644 client/docs/variables/methods.C_CHAIN_ALIAS.html delete mode 100644 client/docs/variables/methods.C_CHAIN_FUJI_ID.html delete mode 100644 client/docs/variables/methods.C_CHAIN_MAINNET_ID.html delete mode 100644 client/docs/variables/methods.MAINNET_NETWORK_ID.html delete mode 100644 client/docs/variables/methods.P_CHAIN_ALIAS.html delete mode 100644 client/docs/variables/methods.P_CHAIN_FUJI_ID.html delete mode 100644 client/docs/variables/methods.P_CHAIN_MAINNET_ID.html delete mode 100644 client/docs/variables/methods.TESTNET_NETWORK_ID.html delete mode 100644 client/docs/variables/methods.X_CHAIN_ALIAS.html delete mode 100644 client/docs/variables/methods.X_CHAIN_FUJI_ID.html delete mode 100644 client/docs/variables/methods.X_CHAIN_MAINNET_ID.html diff --git a/client/.gitignore b/client/.gitignore index 32b1d27d..070b9dec 100644 --- a/client/.gitignore +++ b/client/.gitignore @@ -10,4 +10,5 @@ /.tshy /.tshy-* /__tests__ -.DS_Store \ No newline at end of file +.DS_Store +/docs/typedoc \ No newline at end of file diff --git a/client/docs/.nojekyll b/client/docs/.nojekyll deleted file mode 100644 index e2ac6616..00000000 --- a/client/docs/.nojekyll +++ /dev/null @@ -1 +0,0 @@ -TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/client/docs/assets/hierarchy.js b/client/docs/assets/hierarchy.js deleted file mode 100644 index fb85f0ad..00000000 --- a/client/docs/assets/hierarchy.js +++ /dev/null @@ -1 +0,0 @@ -window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg==" \ No newline at end of file diff --git a/client/docs/assets/highlight.css b/client/docs/assets/highlight.css deleted file mode 100644 index 2da8aaf9..00000000 --- a/client/docs/assets/highlight.css +++ /dev/null @@ -1,85 +0,0 @@ -:root { - --light-hl-0: #795E26; - --dark-hl-0: #DCDCAA; - --light-hl-1: #000000; - --dark-hl-1: #D4D4D4; - --light-hl-2: #A31515; - --dark-hl-2: #CE9178; - --light-hl-3: #008000; - --dark-hl-3: #6A9955; - --light-hl-4: #AF00DB; - --dark-hl-4: #C586C0; - --light-hl-5: #001080; - --dark-hl-5: #9CDCFE; - --light-hl-6: #0000FF; - --dark-hl-6: #569CD6; - --light-hl-7: #0070C1; - --dark-hl-7: #4FC1FF; - --light-hl-8: #098658; - --dark-hl-8: #B5CEA8; - --light-code-background: #FFFFFF; - --dark-code-background: #1E1E1E; -} - -@media (prefers-color-scheme: light) { :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --code-background: var(--light-code-background); -} } - -@media (prefers-color-scheme: dark) { :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --code-background: var(--dark-code-background); -} } - -:root[data-theme='light'] { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); - --hl-7: var(--light-hl-7); - --hl-8: var(--light-hl-8); - --code-background: var(--light-code-background); -} - -:root[data-theme='dark'] { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); - --hl-7: var(--dark-hl-7); - --hl-8: var(--dark-hl-8); - --code-background: var(--dark-code-background); -} - -.hl-0 { color: var(--hl-0); } -.hl-1 { color: var(--hl-1); } -.hl-2 { color: var(--hl-2); } -.hl-3 { color: var(--hl-3); } -.hl-4 { color: var(--hl-4); } -.hl-5 { color: var(--hl-5); } -.hl-6 { color: var(--hl-6); } -.hl-7 { color: var(--hl-7); } -.hl-8 { color: var(--hl-8); } -pre, code { background: var(--code-background); } diff --git a/client/docs/assets/icons.js b/client/docs/assets/icons.js deleted file mode 100644 index 58882d76..00000000 --- a/client/docs/assets/icons.js +++ /dev/null @@ -1,18 +0,0 @@ -(function() { - addIcons(); - function addIcons() { - if (document.readyState === "loading") return document.addEventListener("DOMContentLoaded", addIcons); - const svg = document.body.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg")); - svg.innerHTML = `MMNEPVFCICPMFPCPTTAAATR`; - svg.style.display = "none"; - if (location.protocol === "file:") updateUseElements(); - } - - function updateUseElements() { - document.querySelectorAll("use").forEach(el => { - if (el.getAttribute("href").includes("#icon-")) { - el.setAttribute("href", el.getAttribute("href").replace(/.*#/, "#")); - } - }); - } -})() \ No newline at end of file diff --git a/client/docs/assets/icons.svg b/client/docs/assets/icons.svg deleted file mode 100644 index 50ad5799..00000000 --- a/client/docs/assets/icons.svg +++ /dev/null @@ -1 +0,0 @@ -MMNEPVFCICPMFPCPTTAAATR \ No newline at end of file diff --git a/client/docs/assets/main.js b/client/docs/assets/main.js deleted file mode 100644 index 19bbb7a7..00000000 --- a/client/docs/assets/main.js +++ /dev/null @@ -1,60 +0,0 @@ -"use strict"; -window.translations={"copy":"Copy","copied":"Copied!","normally_hidden":"This member is normally hidden due to your filter settings.","hierarchy_expand":"Expand","hierarchy_collapse":"Collapse","folder":"Folder","search_index_not_available":"The search index is not available","search_no_results_found_for_0":"No results found for {0}","kind_1":"Project","kind_2":"Module","kind_4":"Namespace","kind_8":"Enumeration","kind_16":"Enumeration Member","kind_32":"Variable","kind_64":"Function","kind_128":"Class","kind_256":"Interface","kind_512":"Constructor","kind_1024":"Property","kind_2048":"Method","kind_4096":"Call Signature","kind_8192":"Index Signature","kind_16384":"Constructor Signature","kind_32768":"Parameter","kind_65536":"Type Literal","kind_131072":"Type Parameter","kind_262144":"Accessor","kind_524288":"Get Signature","kind_1048576":"Set Signature","kind_2097152":"Type Alias","kind_4194304":"Reference","kind_8388608":"Document"}; -"use strict";(()=>{var Ke=Object.create;var he=Object.defineProperty;var Ge=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var Xe=Object.getPrototypeOf,Ye=Object.prototype.hasOwnProperty;var et=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var tt=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Ze(e))!Ye.call(t,i)&&i!==n&&he(t,i,{get:()=>e[i],enumerable:!(r=Ge(e,i))||r.enumerable});return t};var nt=(t,e,n)=>(n=t!=null?Ke(Xe(t)):{},tt(e||!t||!t.__esModule?he(n,"default",{value:t,enumerable:!0}):n,t));var ye=et((me,ge)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var d=t.utils.clone(n)||{};d.position=[a,l],d.index=s.length,s.push(new t.Token(r.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(oc?d+=2:a==c&&(n+=r[l+1]*i[d+1],l+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}if(s.str.length==0&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),c=0;c1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof me=="object"?ge.exports=n():e.lunr=n()}(this,function(){return t})})()});var M,G={getItem(){return null},setItem(){}},K;try{K=localStorage,M=K}catch{K=G,M=G}var S={getItem:t=>M.getItem(t),setItem:(t,e)=>M.setItem(t,e),disableWritingLocalStorage(){M=G},disable(){localStorage.clear(),M=G},enable(){M=K}};window.TypeDoc||={disableWritingLocalStorage(){S.disableWritingLocalStorage()},disableLocalStorage:()=>{S.disable()},enableLocalStorage:()=>{S.enable()}};window.translations||={copy:"Copy",copied:"Copied!",normally_hidden:"This member is normally hidden due to your filter settings.",hierarchy_expand:"Expand",hierarchy_collapse:"Collapse",search_index_not_available:"The search index is not available",search_no_results_found_for_0:"No results found for {0}",folder:"Folder",kind_1:"Project",kind_2:"Module",kind_4:"Namespace",kind_8:"Enumeration",kind_16:"Enumeration Member",kind_32:"Variable",kind_64:"Function",kind_128:"Class",kind_256:"Interface",kind_512:"Constructor",kind_1024:"Property",kind_2048:"Method",kind_4096:"Call Signature",kind_8192:"Index Signature",kind_16384:"Constructor Signature",kind_32768:"Parameter",kind_65536:"Type Literal",kind_131072:"Type Parameter",kind_262144:"Accessor",kind_524288:"Get Signature",kind_1048576:"Set Signature",kind_2097152:"Type Alias",kind_4194304:"Reference",kind_8388608:"Document"};var pe=[];function X(t,e){pe.push({selector:e,constructor:t})}var Z=class{alwaysVisibleMember=null;constructor(){this.createComponents(document.body),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible()),document.body.style.display||(this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}createComponents(e){pe.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}showPage(){document.body.style.display&&(document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){let e=document.getElementById(location.hash.substring(1));if(!e)return;e.scrollIntoView({behavior:"instant",block:"start"})}}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),n=e?.parentElement;for(;n&&!n.classList.contains(".tsd-navigation");)n instanceof HTMLDetailsElement&&(n.open=!0),n=n.parentElement;if(e&&!rt(e)){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r,document.querySelector(".col-sidebar").scrollTop=r}}updateIndexVisibility(){let e=document.querySelector(".tsd-index-content"),n=e?.open;e&&(e.open=!0),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let i=Array.from(r.querySelectorAll(".tsd-index-link")).every(s=>s.offsetParent==null);r.style.display=i?"none":"block"}),e&&(e.open=n)}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(!n)return;let r=n.offsetParent==null,i=n;for(;i!==document.body;)i instanceof HTMLDetailsElement&&(i.open=!0),i=i.parentElement;if(n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let s=document.createElement("p");s.classList.add("warning"),s.textContent=window.translations.normally_hidden,n.prepend(s)}r&&e.scrollIntoView()}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let n;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent=window.translations.copied,e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent=window.translations.copy},100)},1e3)})})}};function rt(t){let e=t.getBoundingClientRect(),n=Math.max(document.documentElement.clientHeight,window.innerHeight);return!(e.bottom<0||e.top-n>=0)}var fe=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var Ie=nt(ye(),1);async function R(t){let e=Uint8Array.from(atob(t),s=>s.charCodeAt(0)),r=new Blob([e]).stream().pipeThrough(new DecompressionStream("deflate")),i=await new Response(r).text();return JSON.parse(i)}var Y="closing",ae="tsd-overlay";function it(){let t=Math.abs(window.innerWidth-document.documentElement.clientWidth);document.body.style.overflow="hidden",document.body.style.paddingRight=`${t}px`}function st(){document.body.style.removeProperty("overflow"),document.body.style.removeProperty("padding-right")}function xe(t,e){t.addEventListener("animationend",()=>{t.classList.contains(Y)&&(t.classList.remove(Y),document.getElementById(ae)?.remove(),t.close(),st())}),t.addEventListener("cancel",n=>{n.preventDefault(),ve(t)}),e?.closeOnClick&&document.addEventListener("click",n=>{t.open&&!t.contains(n.target)&&ve(t)},!0)}function Ee(t){if(t.open)return;let e=document.createElement("div");e.id=ae,document.body.appendChild(e),t.showModal(),it()}function ve(t){if(!t.open)return;document.getElementById(ae)?.classList.add(Y),t.classList.add(Y)}var I=class{el;app;constructor(e){this.el=e.el,this.app=e.app}};var be=document.head.appendChild(document.createElement("style"));be.dataset.for="filters";var le={};function we(t){for(let e of t.split(/\s+/))if(le.hasOwnProperty(e)&&!le[e])return!0;return!1}var ee=class extends I{key;value;constructor(e){super(e),this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),be.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } -`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=S.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){S.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),le[`tsd-is-${this.el.name}`]=this.value,this.app.filterChanged(),this.app.updateIndexVisibility()}};var Le=0;async function Se(t,e){if(!window.searchData)return;let n=await R(window.searchData);t.data=n,t.index=Ie.Index.load(n.index),e.innerHTML=""}function _e(){let t=document.getElementById("tsd-search-trigger"),e=document.getElementById("tsd-search"),n=document.getElementById("tsd-search-input"),r=document.getElementById("tsd-search-results"),i=document.getElementById("tsd-search-script"),s=document.getElementById("tsd-search-status");if(!(t&&e&&n&&r&&i&&s))throw new Error("Search controls missing");let o={base:document.documentElement.dataset.base};o.base.endsWith("/")||(o.base+="/"),i.addEventListener("error",()=>{let a=window.translations.search_index_not_available;Pe(s,a)}),i.addEventListener("load",()=>{Se(o,s)}),Se(o,s),ot({trigger:t,searchEl:e,results:r,field:n,status:s},o)}function ot(t,e){let{field:n,results:r,searchEl:i,status:s,trigger:o}=t;xe(i,{closeOnClick:!0});function a(){Ee(i),n.setSelectionRange(0,n.value.length)}o.addEventListener("click",a),n.addEventListener("input",fe(()=>{at(r,n,s,e)},200)),n.addEventListener("keydown",l=>{if(r.childElementCount===0||l.ctrlKey||l.metaKey||l.altKey)return;let d=n.getAttribute("aria-activedescendant"),f=d?document.getElementById(d):null;if(f){let p=!1,v=!1;switch(l.key){case"Home":case"End":case"ArrowLeft":case"ArrowRight":v=!0;break;case"ArrowDown":case"ArrowUp":p=l.shiftKey;break}(p||v)&&ke(n)}if(!l.shiftKey)switch(l.key){case"Enter":f?.querySelector("a")?.click();break;case"ArrowUp":Te(r,n,f,-1),l.preventDefault();break;case"ArrowDown":Te(r,n,f,1),l.preventDefault();break}});function c(){ke(n)}n.addEventListener("change",c),n.addEventListener("blur",c),n.addEventListener("click",c),document.body.addEventListener("keydown",l=>{if(l.altKey||l.metaKey||l.shiftKey)return;let d=l.ctrlKey&&l.key==="k",f=!l.ctrlKey&&!ut()&&l.key==="/";(d||f)&&(l.preventDefault(),a())})}function at(t,e,n,r){if(!r.index||!r.data)return;t.innerHTML="",n.innerHTML="",Le+=1;let i=e.value.trim(),s;if(i){let a=i.split(" ").map(c=>c.length?`*${c}*`:"").join(" ");s=r.index.search(a).filter(({ref:c})=>{let l=r.data.rows[Number(c)].classes;return!l||!we(l)})}else s=[];if(s.length===0&&i){let a=window.translations.search_no_results_found_for_0.replace("{0}",` "${te(i)}" `);Pe(n,a);return}for(let a=0;ac.score-a.score);let o=Math.min(10,s.length);for(let a=0;a`,f=Ce(c.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(f+=` (score: ${s[a].score.toFixed(2)})`),c.parent&&(f=` - ${Ce(c.parent,i)}.${f}`);let p=document.createElement("li");p.id=`tsd-search:${Le}-${a}`,p.role="option",p.ariaSelected="false",p.classList.value=c.classes??"";let v=document.createElement("a");v.tabIndex=-1,v.href=r.base+c.url,v.innerHTML=d+`${f}`,p.append(v),t.appendChild(p)}}function Te(t,e,n,r){let i;if(r===1?i=n?.nextElementSibling||t.firstElementChild:i=n?.previousElementSibling||t.lastElementChild,i!==n){if(!i||i.role!=="option"){console.error("Option missing");return}i.ariaSelected="true",i.scrollIntoView({behavior:"smooth",block:"nearest"}),e.setAttribute("aria-activedescendant",i.id),n?.setAttribute("aria-selected","false")}}function ke(t){let e=t.getAttribute("aria-activedescendant");(e?document.getElementById(e):null)?.setAttribute("aria-selected","false"),t.setAttribute("aria-activedescendant","")}function Ce(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(te(t.substring(s,o)),`${te(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(te(t.substring(s))),i.join("")}var lt={"&":"&","<":"<",">":">","'":"'",'"':"""};function te(t){return t.replace(/[&<>"'"]/g,e=>lt[e])}function Pe(t,e){t.innerHTML=e?`
${e}
`:""}var ct=["button","checkbox","file","hidden","image","radio","range","reset","submit"];function ut(){let t=document.activeElement;return t?t.isContentEditable||t.tagName==="TEXTAREA"||t.tagName==="SEARCH"?!0:t.tagName==="INPUT"&&!ct.includes(t.type):!1}var D="mousedown",Me="mousemove",$="mouseup",ne={x:0,y:0},Qe=!1,ce=!1,dt=!1,F=!1,Oe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Oe?"is-mobile":"not-mobile");Oe&&"ontouchstart"in document.documentElement&&(dt=!0,D="touchstart",Me="touchmove",$="touchend");document.addEventListener(D,t=>{ce=!0,F=!1;let e=D=="touchstart"?t.targetTouches[0]:t;ne.y=e.pageY||0,ne.x=e.pageX||0});document.addEventListener(Me,t=>{if(ce&&!F){let e=D=="touchstart"?t.targetTouches[0]:t,n=ne.x-(e.pageX||0),r=ne.y-(e.pageY||0);F=Math.sqrt(n*n+r*r)>10}});document.addEventListener($,()=>{ce=!1});document.addEventListener("click",t=>{Qe&&(t.preventDefault(),t.stopImmediatePropagation(),Qe=!1)});var re=class extends I{active;className;constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener($,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(D,n=>this.onDocumentPointerDown(n)),document.addEventListener($,n=>this.onDocumentPointerUp(n))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(e){F||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!F&&this.active&&e.target.closest(".col-sidebar")){let n=e.target.closest("a");if(n){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substring(0,r.indexOf("#"))),n.href.substring(0,r.length)==r&&setTimeout(()=>this.setActive(!1),250)}}}};var ue=new Map,de=class{open;accordions=[];key;constructor(e,n){this.key=e,this.open=n}add(e){this.accordions.push(e),e.open=this.open,e.addEventListener("toggle",()=>{this.toggle(e.open)})}toggle(e){for(let n of this.accordions)n.open=e;S.setItem(this.key,e.toString())}},ie=class extends I{constructor(e){super(e);let n=this.el.querySelector("summary"),r=n.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)});let i=`tsd-accordion-${n.dataset.key??n.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`,s;if(ue.has(i))s=ue.get(i);else{let o=S.getItem(i),a=o?o==="true":this.el.open;s=new de(i,a),ue.set(i,s)}s.add(this.el)}};function He(t){let e=S.getItem("tsd-theme")||"os";t.value=e,Ae(e),t.addEventListener("change",()=>{S.setItem("tsd-theme",t.value),Ae(t.value)})}function Ae(t){document.documentElement.dataset.theme=t}var se;function Ne(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",Re),Re())}async function Re(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let e=await R(window.navigationData);se=document.documentElement.dataset.base,se.endsWith("/")||(se+="/"),t.innerHTML="";for(let n of e)Be(n,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function Be(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class?`${t.class} tsd-accordion`:"tsd-accordion";let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.dataset.key=i.join("$"),o.innerHTML='',De(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let c=a.appendChild(document.createElement("ul"));c.className="tsd-nested-navigation";for(let l of t.children)Be(l,c,i)}else De(t,r,t.class)}function De(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));if(r.href=se+t.path,n&&(r.className=n),location.pathname===r.pathname&&!r.href.includes("#")&&(r.classList.add("current"),r.ariaCurrent="page"),t.kind){let i=window.translations[`kind_${t.kind}`].replaceAll('"',""");r.innerHTML=``}r.appendChild(Fe(t.text,document.createElement("span")))}else{let r=e.appendChild(document.createElement("span")),i=window.translations.folder.replaceAll('"',""");r.innerHTML=``,r.appendChild(Fe(t.text,document.createElement("span")))}}function Fe(t,e){let n=t.split(/(?<=[^A-Z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])|(?<=[_-])(?=[^_-])/);for(let r=0;r{let i=r.target;for(;i.parentElement&&i.parentElement.tagName!="LI";)i=i.parentElement;i.dataset.dropdown&&(i.dataset.dropdown=String(i.dataset.dropdown!=="true"))});let t=new Map,e=new Set;for(let r of document.querySelectorAll(".tsd-full-hierarchy [data-refl]")){let i=r.querySelector("ul");t.has(r.dataset.refl)?e.add(r.dataset.refl):i&&t.set(r.dataset.refl,i)}for(let r of e)n(r);function n(r){let i=t.get(r).cloneNode(!0);i.querySelectorAll("[id]").forEach(s=>{s.removeAttribute("id")}),i.querySelectorAll("[data-dropdown]").forEach(s=>{s.dataset.dropdown="false"});for(let s of document.querySelectorAll(`[data-refl="${r}"]`)){let o=gt(),a=s.querySelector("ul");s.insertBefore(o,a),o.dataset.dropdown=String(!!a),a||s.appendChild(i.cloneNode(!0))}}}function pt(){let t=document.getElementById("tsd-hierarchy-script");t&&(t.addEventListener("load",Ve),Ve())}async function Ve(){let t=document.querySelector(".tsd-panel.tsd-hierarchy:has(h4 a)");if(!t||!window.hierarchyData)return;let e=+t.dataset.refl,n=await R(window.hierarchyData),r=t.querySelector("ul"),i=document.createElement("ul");if(i.classList.add("tsd-hierarchy"),ft(i,n,e),r.querySelectorAll("li").length==i.querySelectorAll("li").length)return;let s=document.createElement("span");s.classList.add("tsd-hierarchy-toggle"),s.textContent=window.translations.hierarchy_expand,t.querySelector("h4 a")?.insertAdjacentElement("afterend",s),s.insertAdjacentText("beforebegin",", "),s.addEventListener("click",()=>{s.textContent===window.translations.hierarchy_expand?(r.insertAdjacentElement("afterend",i),r.remove(),s.textContent=window.translations.hierarchy_collapse):(i.insertAdjacentElement("afterend",r),i.remove(),s.textContent=window.translations.hierarchy_expand)})}function ft(t,e,n){let r=e.roots.filter(i=>mt(e,i,n));for(let i of r)t.appendChild(je(e,i,n))}function je(t,e,n,r=new Set){if(r.has(e))return;r.add(e);let i=t.reflections[e],s=document.createElement("li");if(s.classList.add("tsd-hierarchy-item"),e===n){let o=s.appendChild(document.createElement("span"));o.textContent=i.name,o.classList.add("tsd-hierarchy-target")}else{for(let a of i.uniqueNameParents||[]){let c=t.reflections[a],l=s.appendChild(document.createElement("a"));l.textContent=c.name,l.href=oe+c.url,l.className=c.class+" tsd-signature-type",s.append(document.createTextNode("."))}let o=s.appendChild(document.createElement("a"));o.textContent=t.reflections[e].name,o.href=oe+i.url,o.className=i.class+" tsd-signature-type"}if(i.children){let o=s.appendChild(document.createElement("ul"));o.classList.add("tsd-hierarchy");for(let a of i.children){let c=je(t,a,n,r);c&&o.appendChild(c)}}return r.delete(e),s}function mt(t,e,n){if(e===n)return!0;let r=new Set,i=[t.reflections[e]];for(;i.length;){let s=i.pop();if(!r.has(s)){r.add(s);for(let o of s.children||[]){if(o===n)return!0;i.push(t.reflections[o])}}}return!1}function gt(){let t=document.createElementNS("http://www.w3.org/2000/svg","svg");return t.setAttribute("width","20"),t.setAttribute("height","20"),t.setAttribute("viewBox","0 0 24 24"),t.setAttribute("fill","none"),t.innerHTML='',t}X(re,"a[data-toggle]");X(ie,".tsd-accordion");X(ee,".tsd-filter-item input[type=checkbox]");var qe=document.getElementById("tsd-theme");qe&&He(qe);var yt=new Z;Object.defineProperty(window,"app",{value:yt});_e();Ne();$e();"virtualKeyboard"in navigator&&(navigator.virtualKeyboard.overlaysContent=!0);})(); -/*! Bundled license information: - -lunr/lunr.js: - (** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 - * Copyright (C) 2020 Oliver Nightingale - * @license MIT - *) - (*! - * lunr.utils - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Set - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.tokenizer - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Pipeline - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Vector - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.stemmer - * Copyright (C) 2020 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - *) - (*! - * lunr.stopWordFilter - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.trimmer - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.TokenSet - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Index - * Copyright (C) 2020 Oliver Nightingale - *) - (*! - * lunr.Builder - * Copyright (C) 2020 Oliver Nightingale - *) -*/ diff --git a/client/docs/assets/navigation.js b/client/docs/assets/navigation.js deleted file mode 100644 index 02b32500..00000000 --- a/client/docs/assets/navigation.js +++ /dev/null @@ -1 +0,0 @@ -window.navigationData = "eJzFXWtv20YW/SsL79eibdrso/kmO3HjTZwQtpMIKIKAkcY2NxJJkJQjY9H/vuBD1DzuzD13RLlfpXvOmTmc9wyHf/zvpFHb5uTFyWWx3KxUffLDyeI+Wy0rlZ+8+GP8N10sik3etH+XaXN/8uJk3cf/tPvnx/tmvTr54eRbli9PXvxC09w8lupvs1WW1l6l2UO6SvPFvZr1xHvF5rHU9exAKwE///avZ//45c8fRuLXL9+ox5vChr0vm6zIa69MGMaJvi0W6WqecHkxwzhSnk9CtVxWqvbnf4ygqT5rZOebfLEzk3q090vSyr307Y5AK1U0xkzMP59rqVirdZFni1oo5IcFtMq0qpVIhkSEFKrsIW2U3LgQENQjyhkj5Cl3IQW7+PEKVHEMKCSbr6ts8UY9CjRGTEhlFwNngwAE+LfllVoUD6rCMuCGB7mvs7v8UtV1eqcYWi2SZbyp0rxOOw6AVYsOMn9UVXb72CLSZlNx6bWiHebPRpu1uE+znOjW+t+hTu1jWmXp10Dfuat9e5WHHWSnM8aYir/qbfUYc775b4ZwtXEOn5n9LF+qrZv77ufJevTlOstnycVsQfa0vZYVxPVbfXiZna0y5faDOuUuRsZ4VuS32R3C20dC7Ffl4npxr9ZpgHeMYRl3T/k0rVXQBjcwgjtoiC8c1oHSL0y7IN1xaS4qMN1jYAQ3ln4rHNbp+4pwxSRjhQpcyfdEwypdT1IWFWaXFQ2rfEpXK9VgbhmxQgWoVOmhUfyQVS5AqoXWEjs8WkeSr9h608PRUm1FcypnZ20/HixmRgjGF3oIeoSELWS1G4cxM6ZaQRgnUHGJQJa7UmmjzNHAq6oqqnZM5FEJQUA9t7PFRAM4oXKM6oGKY0UVqro4obLeAMq0SWScemTuvWgsFXoNhoRJAKb1WqWr5l5WjXwYTPGiZZIJeiCo3m0hlaMQmFoifXYkANOaS7VIAKf1qlr88nOwCdcj2MXgvuwwk1I7CmQNT0utICFnqMslQzF+pte1gjjOvqIw5lpBGGfYWjNGxhgyloqE2BlbzRie8bbgTdVjIEbOUi1ExBc21AlEuFk7tRCOL+FH2YlklJ2wo+xEMMpOwFG2G4cxM04mslH2nPdyLvFyzno5F3g5B7104zBmxss54qVkGy31raful8N75TS0pmqssafMgpDDDCwK0QKeqZhXIDAjMwQWdBG0eRf+YkjQgYklgkPUxBwwwE1E8+ShtWGPArdKHJIRSojpiTUkTsKzjhSS2S8LyrQsHC5Ir/Yxav51P0BKbmR4WY6QpFebaBX/uhNB7B1c09zBYTZB7xtf0uyhkSZJTg60fNzeIRdBTY87aGb/CIQgpjthmtjfHRvEipzD2ZTKO48zyO69Uzib0I4MkGa+mYvNaQUGKelhu8voH7qbBw+wrq4Eu7otRrcN0pm7ymvV3BdLYld9+GOSbfWzL2evZxfvvszeXsyuqe3wnZgRGNhf38Wdf/jPxZeLlwjlEAqQXs4u3r17dQPy7qMD1Lugd69uPr2/esNQu9EB6gT1NgG9TXBvE9jbROStGx2gvnl1fYN760YHqOeot3PQ2znu7Rz2di7y1o1mzp0MwJ+6KYq3nfjS/T3ZOZT2364V865SmroEgN0hHCFJWqVr1ajKmRD7RPYISEWSCVn6RUnHU/27avo+pH9KYPp9KKEamicvTKh3pZpNlYuzt4cBem+LuztVvVUPaoWbSYFkWgIrSZRMTWAkieJPaKfLj5doabSjQXY0E044cL78W1IVt9lKwTlwEZzKpVoX1aNMh8ZwStdRJc2HYtWatGrOkg9DKiswa14Yr1eUMXI0aoKVxLbRoYb8ZgK6sNDi3tiFgVxdbIDwzmwUeVYLEKbWigrErMUHiFd91eUZh8Ag1VhFEboxOEC51msjT2qEB2hroZs16mZtVTGA2kIEyY0KhXAbAGz2+9PCqhL24HZBVIP40e1wJKwp1tniZnvdpM3G22oOyhQE6Jx3ALb5GmQoiECG7wRcHdFgYwfiO2lXSDReM52OsM8CiiVjrLSRYtEYW20kIPrhZv5e4qkZjwpIHLQAqITELwvA7qHX9UbhFdcOB+lhj5x4UAB2yIk/fMh0ty+koX5jSIAWHR6T+NpthJlquG3+rqBgtF1oaD27NxUgGyLB7rJfpfd3l/3/U3WX/fYQWxMGUSsaO1PF1wODHa8Gw2ksthYY9II5ZfagclXzjenA78SjAnAOXAAncaXSZSbJhAuAJeDnTCBgEdgrAnF4q2fXTbfK72onUUnNuc3wKAGuXWiArdplFqAbY8H2yPNq5I510lck21XAIm/SLFfV6ePFS7bU9upeGLJYqQP5IkwLypZHdSRfnmlF0ZhQR7ZscbYayAjVSHNNaIRupMUmVKJ7leZ3/PKgK2rixIox/lpAsWaMtxYQ0BQWWnFJlRZPeZmUFkR56Xub1s1ssVBlo5a4VSRKqCYwjoYJ9QQ20jB+eiU0kgDgGqh9FAJXQU2jEJPMFo3eKzRM6dNhI5hVcqvdFvO7gxivRNd8yQQ6SJgeTzaQVr3YQ5w6IDjlxVn3sfA487YIDTNvi8kOQCxKfj7UCRqR7JmBRQlMT0ZeUet+2m5vdPeaQIPi2+JHH0gohrROrpqobdeBoH9eFCD3TjXfi+qbwEcXIZHBs0RAcKF36RoZcxpKBkYmJc6VCULEiqWSPCQzHBYQZMSKRyUSWR4ScR4SYR4ScR4+qqrOCv68mC5jY2RSsiw5IEDsZnuu8BpjRqP0eC6scEAAOayzY5cc1enD8ZSLzulc1KdF0dRNlZYlNLy+LX70YGRSYD/mA8nEQPN8IE4sUaoCn70ZChGDTlmxEDXoixXLUX8o76p0CRyk7MidaJQeTLwbzgs0Gdp3W7EYNZxyM3iCc1WLMrgi3cm2QeHpjD7UY+ms+DDzOOJCaMdgiLMd7whY23CGtxt+QJRdJMCWwGwJzzb0wSjlEB7m7XpFhLELDHMxh9J2TOEjaZnRZLN8ZniAt1RGe+uh66ICLJuh7WGJdoFBrrY1AJjaMHCKXzInwcpJT4Ltm4HwKbBB1Q7n2tZX+aJYZrnzEr1FuwtDJsLdu6Z8T1CO515sBC7C9/KOimxS32P4rseRka+LnD6+Vtndvf/SHUKLxEkFRSbSQKmkyFAaKFqS4UdVlp6FkomJc2fDRHLg+UNKUn4C0caKyw6JjRCO8zjiJGIHlrortlTso9w8sWOybeNNVam8ud6U5epRYBeNkwpK7PMApZISOz1AXPJjusqWaVMAE2ZHlcDGCEdYTIFjpCOspsCA9LlS/V1BAptdjERIkjcChEm1zZ5kQOZABDLCDFkYQEg8SpIPj+SDlIjRydtnYyEVZIZCycQkFZmEyeQkLpIwQO6y69m/SYq4AxHISBx0MQIhiXcuBhBKqqIsarUU1ykPUCwpyaEPCYheqe9ptcReKtkLUiiZmKSkkDCZnMRNEgbISSuauJaJq5i8fokrl7xmtYgsv5vVtWqA/V9TigCKJaUOUkixqNRTComIbr7mStJcWQBYQmSihYBFRKZZCFhE0u7ZCFxE7pesrRswcsdkbdxNtlZ1k65LgWkuRiIkyREBQqSKJl1JG28CJJKSlAcKJRITeUigoOMQEvNEp7eRNy11bplJwKltnVxoingJMublZ/y1Z1dHaJZ8ifGILznvRY71krOlcIyXnC0J2RGhcS1nJunzSZhQTuIdjRMKSpykcfwZH+yt8fLIb42b/Ed4a9wUEJxL6nDdCjhAb0Vj5NqnMqFNXQ9KLAbnx8JwQtfpulwp+SK1FycVhIubHyiVhAugH8hJDhi1PIV3VCiIQAb2kcQIhGD3SAwqBBdEFwBLiC0TlLkRIrZr0vfF78ZTDaGDNOV458QQDByHA/naUIBtd0hAwLqDoEf3goeSLG7qo8N+Zv6uEIoeuS3E2H3EBAwIxL5v30QKe1hYZdz6wtjHcJa123+CSbvoMKekCCJlT9sTwUg1QJh5t2OA0e6iw5zmGj3GbGLC/NqqNUauAcLMAisAH8zFTZx2j2H4u1UtkLeLRfhAT4dg5tDrbpUK4xzDGdZx3QakHeO5I7ogH/POKnLnk842yW1Pe0KgnOuzRoxURwQPFbM3SZXhm6T2XLU1ZgZIbUiA/WE/pgSItWiAE0nqGIseOO4+yxQ4cNz9P9mB47RWyDtlg6odzo1ph/jLjgXj7mNBYmCobJDjswrB4aBeQX4yaERA9ljRMDkwZbEE8CmL5GCTJSK7fXPRZA/qqq0HyKpgL+XFSQWhx0ODpFLww/IDpZLwo/MDkWN+bVsoq1AelEwMfXYORCYjMZGEcXKX6TapsqLKmsdzpRJV/Q58RWLQDGJjhCFT/cAYSdjgMPjw5ZGvfUcS7Pj7lAyRgWHELTTP7dlusUmuUUMBWhvCTP/3RRfj1gAB5jXxzAB+CgYOsr53n8bzD7L6/6caZJ0V63WRD/se3pZ90DSD2R64qNZp06hlD5t9vARl/EChZBIrmURLxumhYl0/tyg2eZNsvr5R/Gr8IOfFSQX5ts6jiHcn7zdNuXG+z2vR90HsVonK+UsRBkYjFiHmx0Mas2B7R+XAhQcaNe5sGz1PtC01iTc0UCwpcs2DFIuK/PQgWdHsLk+bTaXYjI2BCOU8uVR1nQIXYGr0LkgkhT8jGiUSw58NjcLEYgq9FyiWFBoaV+htqNDYuELfLmi23+zr2+PzzWrFibkITkRL2UvVpNmKc9EFQBK3qhJlhQZxUp/SrDkvqpstXBAJBC4CFz0KwslYn3MmvlgfGLz+ffwYe/9jVS7qHboXfP7st+e//vxc+BX75fvqslhmt4/zZLZcVqquZ9z3qIZUebHcvEYb5wAyNiS0/Kzy4K0YA2MbxrAYFRykNDAhfr1lRrj1eJZXmG4bE+D/PhZ5gHgfLJrHsZ9r6sMm/mpTUqkyrdSrbfv9eEErsEuGH88e9bKQaC/kUxYcl+uRF+vD8kzgpcqReSbwh68JlZaffEnfpcpGBipSaWVALDIiZXWLuwBn0Jr2Hpw+rWqJzFPHs58GhitP5EmLEL33pIXvKOb777mqLowbgkP8FgisD7PlMlHVOqvbi6lWqq5fqpW6axMpqZ2lUUdAzilSCNdiQQrFrZnDNj7oCT2kOadI4VQe0px4CvuDItN4F+I6JEXxXoW4wBS1e9DxrjhomWpkzh00qHpW5A+qGg4P3RRvn8VnPEx1QHoiLQlToempVNqo/vh9vDMekqg0xLrhIRGlYfDyQCMIlrhUHGQFwQKm4mVWt8sc2kAj3hGG65AURbrDcEnnPJG+POVsy6P8BLOtkp7zPMFsy6Msz3O+qFRa68VleNHgAB8wzilSGOsXxgmm8ErdZXWjqkkaFI7soDRF2sWRwWlaFw9qsuErT3dguqLd4ujAdF0brx186g7yx9vFsh2WqkizWDZ216bzuZvOg37oiMnWpEIzZWAFqTRWkEJk/MpVcMJ5eFp0Nigxbk2ISYTLwosPkyqx3IDjBagpiliNIgGkjfmAXNSAo3LjmDtSb8TzguQwVixLsvDikhVmU/BIK8ymiH+F2RUJjXTkwiE2PjH0OEKcCpoGkac75ogE0ER8EjzdnTgFHh7ZjsMW23HY/nU7DtuYHYfIVcDtX7IKSKo+wWzd1H3K2bpH+Qlm66byU87WPcpH2BvFhzzbuCGPpGvcPkXXuAW7Rrop5NrAaRu/0022Wv6uclVn/FslgzSJYV/b00B8/SCU8Eqho/gKQUjJ3lBbrYYRB2ygByUTg030wWRysJE+GCLXvhL/UtWLKiuhs6SapA8aISty1ouNEBZ57MUCwui3e/Zyx/x2j6NynG/3ODJH/HaPpvVE3+7xKB7z2z0eySN8dsVSOsJnVyyFY3x2xZI4xscQ9hLH+xiCrTH1xap7funFqshtBjr7cb6RaykI7ZGU1CNcDquTH+dyWF3hmJfDujpHuhzWFTrC5bB7kWNdDmspHONyWEti+rtMd4szx7rL1OQ/wl2mpgBu0LzDsXeZDvRWNEYO32VqiIjvMnVgcH6gu0xF7/trM8LQrH9IhR7OvNGynx4BvCaAYbYmBSC9hQprAFdE7qmnuSJS45vwikiLFbsiUkKL8IX3Yvdc/IVkzNUUOhX79WHkejOdcJLrzfaE3PVmwBVkA5nvCjJz6W3TGG897lbcup+nWmhre71mW9TnRTW8+0bfZNCL+qIPb9XOTv/x75vitSLd68XHELbIVcX69NFzGVrPZcYxJSRvXy9TS5SYiGcEmm0BUuuRPKn2nFhaLTZAfK+2N0X7IPx8YwhZuj//+fn/vzNk6A==" \ No newline at end of file diff --git a/client/docs/assets/search.js b/client/docs/assets/search.js deleted file mode 100644 index d9e88e97..00000000 --- a/client/docs/assets/search.js +++ /dev/null @@ -1 +0,0 @@ -window.searchData = "eJzkvWGT47bRLvpfdr6yFAIkATDf1nac+CaOp+yN361KvZXSznBndT0jqSTNevacuv/9VncDkAgCJEBCs37P+ZA1MwLQDxqNRqPRaPzvN4fd78c3f/73/37z22Z7/+bPvHizXT91b/78Zn13t3veno5vijfPh8c3f37ztLt/fuyOfzI/rD6dnh7fFG/uHtfHY3d88+c3b/6/wrZTtpI159befl4/rrd3n7q3VNu2evqyv2zTLechUrzZrw/d9nSJ8UyYlby2VLvPT3Po3XSfn9a23jjpQQshLA/d6S+//vj2/v7QHY9pcB66EyCyVfMhen87F9DLPjuel/2swXrZ5xgrV2D/9t3fuy/vdm6Nn/anzW4bZNd4rWRhdkH9Y3e3fnx/O8GmfqllM2j//OFxc/f37ksCsRuq9BtWmhgRp0cBFMfNw/bH7nhcP3QpOKDak62WDcm7w3p7XN/BkKaiOfWq5kG0ez7cpbHF1MhCHwimUNfls9D+3B02H5NE09aYS9+dkpOzcf5E9JAaV9a2QDIpcebpp3uvCrM0Pz5vUX4vDQF/lSUonrqn3XZzd0wDEq61BMt+fTh2KTC8FRYhOGw+r09d8sCM1cuFZzgBJoDMnxBhBM68mEawfJ70G7wdrJOTGGyVRShMI7Fs8JRfQv9l/3N3t/vcHaIYMCy9jPYvHrvAS/ai4HKKvvU/SPWi8DLKv+LKBU2uT8+Hif46hdOXHkv47tN6sx1uAunPo1vA6mIvaXSPbefz+rBZf7hoyRYZx6rhBOyBD4+7u9/+8rJ/3B26wzGW2A1W6y6qjdG+qPyf/6AxEwBztwNz7+4Uj+OyRhYIm/to2lg0C1H8TyxZXTgT4dPmc/ft8+HQbe++JECAanfnalnAHPZ3/zo8xo/9YX/3TOXnkvfNt++f/99NBAQo9qrzzhKcO/ewgXzz74wnfQ5GQImah2cMCXMxgnjkfDyTT5qTUQAS5+UllFlzMwJU/Pw8o0mdoxEwTt3xtO1OSTDOdZbAOGuLzfa+exms8PjXNB/v/dNm+/b2h7d3Ph8ZteeUGVc6BCzAufXjZh1P48YUH6HkVhyl/C0wOZH8na6TAcNDd0IEb6HdLoEPD90JYaxtxTxo/rF7eOgO/+g+d49JYB6x3qOulwHL4259/+uPCRyBCp+fMnECVrPbw+7j5tF1io0iuPttbytlQAF+kMOXZBxULSuS40zJOF5BMo6n9eH07e2/NF8OCWig5t3+eX+umQXPbj8Tzm6fA41fge833z5uuoFD87IxUyRNfY+T+3a3/bh5iCBKBTOQ/nl/98vdp+5pHSZqiywkZ5bib9bHboy7w3LZCY/xOVQ6E4iYnmftdXyPr9Hb3SGux7ZcdsJRPXdKZwJBHr5RU9BbdIFF+GF97L7vAutdmNgN1PvYTS54/p4FsHzsuhjme9B87Lo7UzMfnofuBCU+dz+Dcf92QiQ9sB660xobOEAD6/DuYyY6tGZnsszYtFfg29P65faw2R02py/fd91td/hraNMxgu9p/bLXjXzsun13eJjeikyhnJh4E2tboHCmuY8+7/3uEKV/nMKZIPzX+vGRRH5S/fSKLlA/OMXQk377/GEYMTFJlaYYNrB//jAWPTHWVNgQ394nI9KV8qJ4fxsOoIiD9LKPiaOYhW/zsH1/6w81icC2edi+7KciTubjWsQ3xHYtvv2+3py+3x3evaQDg6ofd4fTy2JEE8ogxha7LJlVE8XbY8PyeYFEWqVu6SuBSODIdexUajxyuXQKL4PwLTnwRpaoXomFK9Np97S5e/cSSQfXIqxyepmYlv1uTCP45bQ+Pcf29xLH0VTMgeZf797/lALi+fSyy0J7czw+d/HjgMVnj4Ff5Eam/2WBHNI9OcmHxXKQHZ/OTpkcBKfNTU+5BTN6f+ig4F9ewHAOrbohkje6doe1pxdeXxfHcf3wtATX5ikHrsFAHbr1qeu7Ev9yOOwO74YBrLr9sRoLpYaaHvrbohCNVMsKawakq8KxFkAapGG1rLAuDbYkYN6K14A2j2/ByjkgXur9GFTe8jmA/K1bP54+JWmEUJUccH6AUkloAjXygPm4S8Tiq5ADym2ivHjL5wDyPhGIt/wyIH853PFyzNa4LLDAyLjv9o87vxtrQOHGFh5bsXvIw8b5d93d5mn9GNk5MM/vzzUy0P/nZcTUJO3RcKkkur98efqw8x+SeykfTfkZtAf33UipjUfvuIUWCNcnbCqeyo2tMNbZQS9CYRqbz912eJNmjP5FlRwIDt36fpMI4bLOTAyBYR8983fKLFNeTmMjW0NvyRzEx3eHTpllBGlxHp9UTpllfp5vd9vTerPtDt98+eG7aHJ4gmZqfvgyEn/qbSMSz/YyzDAVkq6cGdXP623Azz+J6aCr5kGUzpy8HPnH+ginV93+1PmPiUIwHtdHOLUyFTOg2RzTgWyOizH4p+6oYuwXyaEpItSir2AG0uNKsV9kKbmPu0mVeFlkSZDw3T6awo0uPC4+Pezh+fQNxHRiUEJQDQ8BPHSnD7ZehBKOxPLP7vT77vBbGpAtVcqOImhbj+OIMLLjkezuu0Rm7O67jJwA+rfJ9Pc56f/aHY6hY+QREJ9ttSxI3r2E4rUCGE4v04Fa0dRDUeIB2tMx4nGUN8dvdrvT8XRY7/fBNW6IYHP80K+2HMm+u7ytNQXAlF5O93n/cFjfB24t+EhfVMhB/bRJ0EG2+CzK3sVvwqi4KJFhpY0yKQbllhOeMiguSiwjdjt5jn6b7xz9G3SO+6VnSAZXdFtjTIBuI8+t0a5Ioa7LZ6P9zZe/dZuHT37ZHcHw4csnUy8bFudueiQSWysvjpG4hkkwMZENsYjonuXpl+f9/tHvvPXDoUuWp6OplxHLr+vHzf36tAssNqN4Pl/WzYHp+9HIbD+W2JjsBAwgLilq5GPXHXWVHAiSJ3HW2fsPZkUiAcIj+3xRKweOH3Ha/pYyDk84XX/LNQ63h91+d+zuk8djrytmHZefu9/Xh/twbJQfygFrxURIxeJIHZScIwK0N9uHt8djdwrsEsMgNtsHQHCa3CxGo3n+cHk9PAKFqZCPeoosHG2NHPTfbZ5A6z3tExCcLupkwbA7rR9TBfIElXJKZSBiMEB9yi8cTzXZqomM04xFkKqLcmqhs9kSuC/lh3C2WCZvSUUhGYsY9SCIixiNonxcP+0fu3Trjerltdx0a939N9FGra3yIYs9a5qLZsNlhTnU/RvdEdfBZYEce+pJx8GwWA6y454Dp8wygu8nfQfvB+M683Lq8+bx/q8QQbCJJXSDdR5snTEZeh+p094+PmoXRjQKCMF/fPxwrpUFB1hJ33XHu8MGcyOngIGq972qORCNeXb8QOI8O9H0g56dAPUIz04S7VHPzgiGSM9OLJZkEFmpB9ZZP+XJVTaeaugcJER4+hgknvaIjRciH2XjxSII23h+8jE2XhTtMcvKQzrOsgpR9i89I6v5+2yr+fu41XxYLAfZ8dX8/ZLV/CI/6jqQe+ycHZXorZfkH7ukN57nYkA2Q64LH3X/vaMg9QXXjy6o33mNJpfo3XzDaUArrpuesvPpeu7+hAl7Ci+lPJIxKEB+ae6gMIY0+plpD+8rT9GfeWc5jOGcoiIJiFMtFxrvbfYJKPPvtU/iSB6fZTfLB3i8d1r9EObfbh1QDcVN+wkviqAe0A5EJvpJL4lR9FD2RS+ECM+OYxjQ9Xo+/GTn+0AGVL0Wmp/qfFvtgmrnu9fj0utm3+25fOMjdNnDpeYWnE0Rf4og6JRbQM8bZDokNz/Q9PIVhiiLaJ/FInqJovUyn9bZgH/qTp9298Pk//rvnmbPrVxkI//2P9/+7e0P//zP23/88PYX29g507FprlduHLNBNkrv+3/9Pz/85+IIL0xRl8xA88e3P/zzn395F0f2XHgBZdPIP//y7r9++vnv45SHhRdQvo0c19tM43obPa632cb1NmVch4UXUH73l1/eRY/rsPACyu8jx/V9pnF9Hz2u77ON6/uUcR0WTqU80Kl/QkdESLP+B38d1a+DhEY2KXnoVnK/bU/5qE5p4DFAbteH9VN3GsYYh5CcK8yDMpkfPpLwRLL4HnlvKyFMJgH8HEzjyeOTMHmHLEFsriExKcLyNeRksYhMS0e3vd/vNgNvcASYi5rL8LhD89f+MwNxMhKqlEdanNYj5SZYK4METc/qcepJUzvc/WiW/dydng/b1GE818o16QZH0Cn0b6YesBhl2wULRtl28XZBtOz76mQT/YvG4yXfWynDKNILDZ4bfQkIbqiR0ft9g6H0cyGWcfHy762UjXHYbsrguVPg4oWMhHng50SYef+gB1Xi5N8tnEfwdauRAzconWHEPq43j53nXZkYyjdUeez+YH+Qht0NoNp2v8+EtO1+z4PH80S5eQAnVmKGFfJIzY+Xr+DEgfFXyQPnlznaO1Qpg0jfb477x/UX38M8CRhudDPj7/T05SnIiWXrzDjO5HVmBsqlvHzcPWTm40AInTeQ4qZFsFammdF/CCkWk7/SPEgitCE8O9b75LFUHlrf9vYPowSx6GKqocfjQqSd8jno+x4FGyF/UXwxdfeBuBBZXS4DveGTcGGatuxiuv5H4EKUe6UX0w48+xYifsw7wsGH3oL0nQoZEPifdgsD6JWfqVYHTua7vmpxvcx3IXUSVtU60/hYLnendV+NuP5p9KPbOtPu1Jqhwfhq5AczadsN0aRadgM4jifxbne/2bphntHkby4aiMHhbyqE7vQyuFcZj+z0MnK3MhHVyBBObjWHJFL3m+NDiKH13lj4aAT0tvZEeHyYZdPbz2QxcwEuELNpdCc3sDse10iQdyKiEREjVZiuuJx6+dUXEZihxNyKOeZBkrLwApirMgZsSGDeDPXhVvxaSsSLY6EqGTAldOE0wp6YhDpxN2UWSs+A462V+NnbL55v0mK7CXPVKZ9Dytb394fuGD7OGSd+c1k9dsjcXi9doLzAZqxOkbgeN0+b6RnpBWWqZkZ03D0f7rr+diEJFzUQd5KZjg72Z74UubHgoP5mO5YwNwVbaBomaH2nfB6j/z6BRUNT7H4WgyIOKZ6fvocHWge5DiORbZ+fPtr6mbGZq4QzYI3fQkxBNMieR9cSI9cWt3SmpUU3G7uyDIq/3jbWTzpZew87PHNfEcATv6cYQxIYpljNMyj+Oia6n2ySYT7saMi1PHjqcOh0021eFJ7JBz9lxy0WQ3+RX6yPon+deow4llxO071GHSSpC87VUAP3pvOGiOvepJ+T3Jt0UWtK8+qGncJx3dKYpyBM6t0ehlS1OwDRn8/rhzlUb3S9GNKDFiYZMqnheg2nKrhxhtx96u5+i2KJq+FszQSmTFstVNzNgxQF6Fx1KaJB4Id+Hydy8gyKZ5o+pt1YeRmWfy2JCVBOlBlPf5dITQhUotyMonKH7GfzrFGk6AzLZ5Id23Cs9vVUeB0FHCKcpIN93Y1gTuzM8lR4rakVIp04t3xdXjK5grASZ9c4rsE93xHDzJhIIUspZnQuQx3cZ9WCFE3J5TSHD6kFidqic/XFwALd9BwurgGq71An2J9/dV7wmtKIRCFYK66fU3l83OYntaMfVaqOHE2nN+EaiEIQ7yKYai6EchNyecXhi9gdJyCbGtZJve6nlardx7Mkfhnm10wif2NamMO2xSfecRAXit00ykSxc/HNFrsIZCMO6khwUU7qufhOgYTTaRinU1DPwDkxfaGhWatFr+JVFgwoPW/N6Nf8SsuGB8TCKewwJNdc8QFdMF2CKCOGe95a0q/5NZYTD4IlK4rDisxCmXddicOatrT4UM5dXSLxzZk0GdeYOJSzlhkf0oUrTRDt2BTHN3PTl5p+tfwLDbY/Y5lx6n2NRcYHYclsdlkxL2AgGmdk4MBsnJPRH5FIE6JAUrBOCuWMxdCpl0Eo7bvViTNj4EG7bGcWE2MVTppJeyU7NtF4/XoWayYzNdY2nTQD/NZowtqfZH8mGp35Lc0ouyOHsZG0Zl++6h49k7yVsk2oy9bj55W/1itOrxEAM2ZZgAnRjIuXdH+t19pajVBP3VYFup9xWJdvp9IwTuvQMXQpqjQRV4wqG4WWptHS0EVvncYQztg2TaIcRualaV5P+TxK99xwpL71VXgtVRuknTodvb2eNxPDmKIn4QSa8JBFanpfhRxWjW12HvWbzXF9biCNURGRnj2n+cjxLzXtVpjHnzCCntqMBLH1HxDPx4E7rCQUWCMHhmgGZOv1pU6OIXxZfjF9z9wIkT4XnanRPXEHH3cjYQcfd0lRB2/v9pOxV9hor2BsXz7uJkhH6DhNO1259Yj3b63d7cPLoJ/eja4zTdSpPW7Zn9+Qjwn4+LhbhepkGRGn8QibYYgo3W4YGaeR/KwRtCMTtY63FM+uOFkOVlrOrg8X7c6HcHNuJsrGGWtwnHn/7E6/7w6/xUv+sEIusbctRw+ip8byEdyaRmcSv9ENJAycr+cxrIKUbInj1quSeeSg7dSx69fJNnojyeqmAZgR3K4jktWNNjfBtt19lzDx+qWzjR02Gz9sTvEMI4YtziF7A1VTppnb1RFEtz/dzoa038U4NiYxhQbrNklibq8jMbdpEnObU2I2YefTCMmbTeKo3KaMyq/d4bjZTT7+cEnArZJzfHTbSYM0qLN8pO7Xp/WH9dE0PRvEjWnos20ofiCHvAigfdicvt09hVNDROB82JzuTBNXQHjY390edqfd3e5xMUsP+7u9buuqXP28FOh10T3polN7nDGAT5/PbeTB6JnW+Eh1rH7pF86lWbDVaJ3ilM6wFb2/vz1sntaHL9rY+q577B7Wp91h+Hx3DBhIfbOnBrXFd28aHHvf2x1Llyux6H9dP27uc6L/bBq8Dvpfnj9su1MGnh+xoSvzmtBm4DGhvSZv9QOtx6P/JfoooNQGgJp4nX4RxrOHYSHQs3/jimhJBBYipeG/CsoTPFD8cXd4WgjUtnNNrLPBZULjWY4iXsUw7aa/iTG9Gsa8iHFBP+dKSG9HpBG8iXlwwlt99KT0m93udDwd1vt9zEn7x90qUCXLqPTbjvOdh+osH6Wxh6mmSUc+SzXaUDSr4gQ5VCfDlr7X8mwMN5vjh347ycyLEvvbrjvE6Z5+ySxCjk3GybZTNJezLpmm9tRF6h+3gxOsiJNdp2gGVjw/YZupRCGh3r6LC+AeNhFCs58FJQsOd1D+tX84rO+nXyvEZgeFs0wR02qcaAxLZ9ir7g+bu93p9tP62LF3m/HTiACAG93IHhs5bWJPIzy9j0DJc6Dk10ZZ5UBZXRtl/eNme4sJ1EazP0cDrp822z3aA5E5oJdgz8Hh+tocbnKgbK6NUuRAKa6N8nZ3PGVBuoeGro72kIet+8N1OPthvf34cS5ArHwNVHc7uHu3notLV78isveoLuFVsV+7w6kL5zSNwfmCuhJe9fmMjcUeEsejvn8+rLcPu7n81NWvwc/uNH+Yoe41MH3cHU7P82Hp6pmQDY1FaDjSWu0VzWSrQpuxlmq/7HI79dD9vj5AXP8vp/Vv3W13uOu2p/VDOoob29IRWtpfthQ1Yg4XAnh/R/unu3/7uTusHxYBNk2tqamMiC9fGLwMc/UFKH/craDMrJHsh2N/4ws9DJB0imeg/s9B2FyYtC2bj24v4GuSMpTOQbsfujRCFgvmongbS/E2E0U31mCcrC6dgXb/RCRMFctloDf+LKWhFv0oZZhWwN0ZoNkvvZR231MUIImFllJ61qvwFDFTbjm902ZaC1CpeUv34CLIfvyFx336C49ntTz6uqNu2S0d16391OsTfxm/K6iJm1KZiEIE+/pxvb2btMX29lUPt0J2KJN+9gGWVHf7AEzS405T5BOedxppKopVkybsgECqITvOqg/U6EziN+fqiWyaNlphknb3/9yd0Mhef3icDZJa2sJqcG7pSngzgb0q0uctEZkL8aJ+fmynl134rGwa2ullF3NkFocsdG/qmy/koU5Qud5qGRXvZfsp6tdfL4dmmbg6H4ch/gb9ZHshnJ/GDhsiUUYeMKRgnBrklIXDXy+z9JH3MHFKOJWuAimVU26tLMvsueEFIG76zSQJ24AXkeyLe/HXR2zWm79pYxv56m8YXV6Vd3GPNWJxHYeSdps1ptk0ps6aNfPeAx5n6uj7utEgYl/YjWkwgpGJ8+VakyR1ZlxhOsTOBK/4p0v+4vd1J2DNtUeSpmHq3LvGmv7t8wFq/fK83z9+iRdnf7UrwUoQ70C9LAoKA8gj5HwMww21kiTwIV7EMzBB0AL18jAQ2lyE4Ma2MYt5sbpdV7IXZBLsonDV7JPjTCN9gvjq5hjj8RjYeBjRQbFRTU5M6VA0RQLc+dN6Am/M8KdPb1/dHMNvb4LNkIDBlYzLtmYzNXbKf9913+62HzcP8VN9WCXfFLdtJ4ytp04WB8/LXXc8frvb6ou83+62x9N6O+1KCeG5oRbvbIt35xZjx9nHnwD+p/XLt+v9+m5zml57gpCf1i9350aug/K2O/zS3e220xbGGMx9dziaVq6Bc7O9PWwiThLCGDfbvW7hCvhO68NDd8rASmroytykMJtpZRlEeW4gDzq/KoKdccLB46BGVr2ITaepRadKDq14l6BSfORv5qkTt/OjOns2Nls9P7J9rPLwApuhOCJxTeVunsYWn7g5Ep9H/FPPo652EJV8OJHpVGLOkY6XdPpZzqDLowz6B7M2aPxw+SrlG7OL1hM2jN5aGfcKm104G2QMiptzO0nbLz83YhmYIPneWq8Z0xEGMCOuw8+D0EWAbn132nzGwfnp9213WIL1srGdbuwqqCPVygjUZN2ShO9ps/3nbuHAP222290VR340cWEUwsj8hTPx7Z8/PG7u/t5N228jEKmR37oUGy4J5aF7gnPB7YOOXlk8h2yDeuJfdR7hm2Yj11qiEGMjUZdb5qKM9QGOgUz3/iVh/H2xRvo9t0byLI8/4hHqbwkbxUGNfMaOaTrB0hlWyXhsNC1fAfJzhMvT+ShmJVg1wyo5mPW02docatj8XBywwNkkakfdUir7opZiO00W4z07vHPi9Qz37WG33x27+9TdZKBevknbJ5AgjaGKr7jLHIWQbhEGWTHKwJ/xnuG/3r3/KeHI0lcp35hetJ6gi721XjVcNYxgTnCInwshX1T4gncUvlPMne54bOODmjBLvbW+1qAOfJ6LBjViR/T89H13uvsUEY8/gnL7/PTRtnIVnBBanzQ/fbH5Kb7jKXQe8Us0M69lY6YamFewLuOvQHltyzkXoMKWZSAU4KdtRNSPF965jd02KeonyfpNNX2vYPdGKzCv7ThDdUXat2iJTissLypb9yqYfno+7Z8jTk5HoO1sE1dBuAhbHlQBYd9sHzCh8vT7Kn0innp5lemZQKJW9VV81c37KIg5W/ggOxKYmKjTfBWzrFHU6DIMN9jKAhZGTxAcq4SJ0S+fcUJgwykTwanwuhPAR3yW4LvdjmBSiqA7FbLEguy2p8Pu8e/dl9hBGgSDUAu/UQtprJpej86RdtED6QGom5gxmNMIN8fb7vC0OQKBGHvDi3Fz3PcbyY0S7mCcYs4z/PguqudG9rTerh+6w1sy52fi042sbSNXQon1ZkuibiT9xlwsStJZ78y7AXje/C7GI+PHq98d6DWX6KCJRX76dOiOn3aPcyfQZf0M2ILqOsE36VbIvbym+CQHNXKsHZuYfYKX8E3a9Yhhf2PYk7yy5r4VSo3OJH5zrp7IpliBfmeC/uJFelgln1DbthPGzVMnx8jFB1SGAMyKqPRxYJxlu9P6MdGh6KmTcQxt4wm6yVfpVe3/IIA5ewAvCyKZliL5nkqZrrJHnAQHqd+knv96O78slCQMLjmSZAKd9ym9hKn4co0p+JIy9V6+0gnlgPAcR3Cvq0vOI4doEq3cABLv8KRM8pfFk9sLITVhyqBGfjBJQnuNxCiRguJPhJIsLmmJT0z5JNG5RqKTQ7c+Bp98nSR+Y6unMirq3CImBUsIWXLqlVFkniFMjGu5VkRLaizLFaJY4o99vQEic459I2NXolevXJE1kbgeN+G3qydAmaqZER13z4e7joZ5Fi5qIO4lvHR0EHf9w/a+e5kJDupvdP3l2ELTMEGbf824o1wRR5ExPN32PmHohrjuZw1c1hiofNFPkdiSp+Ng+Zs/HXNFZWWJx0qKxDon2nibcGbqrZVvgb5sPmGd9ld7xRDiEQDpAcQBJiz184xhnOHpmUQ5MbwJ+t9f7ZWz3oyAmJfwJsCMMAN/OB6fu2gPi1s60yTVzcZOzkHx11u8/aST1+5hh4Nb6Fl4TtGr9RiSwDDFTrJB8dfxKfjJJvkThh0NM4XersSEjNMscQpnmj7UKh5Rr/EZj5jnMAKVrgUpljdOlUxwflk/7R+75AR+wWpXghWrAMP1spxXbP5XIl8GKz+1EDXXRniwyDiZxJhonUThnBrgWNUZrveaBsoEihkWygg/wkzUxbv7b2Iz0vpqZJqyF03HzlZvlSwZP3yv2CVCmJVw3M+EKKbFzgBvldc7wg6TT1Yc/s5PMyt2kRqWzyzq0cuSp8Lrj9hiRe/rdgSTUgX7ak9NTObbDSHoqYJole5jwBmj8+ymk6Jo+OycbvRcdiZvPM99xlGFkvlomudX4mmbGvkwOO+PTCKg8pnpOzuSOBCLdiR9JL2831EwejVyYvh1aH1F4DjXyoLFpv2MwmBL56KNWQ5jSWPhLJQTJmPGWXiROyeK9EX5LPRNPpAo4qZwFsr9rBVR9PtVsqC4uFEeBeGifBb68czPx/n+Zbdo4ucqeVCg6RVHHYtmpBo31rpsFrrvBiHOY5Rt6Ty0bVRlHHFbPA/1lziqL5moJVgTpnAWyvE6JJ/2uDzRiSJ9WWE5gg25wqcp64LLKR4dH9E0abfGcgyfz3v2afIXhfNRjui2LTp3v3++iWeKYAZLS3nwRDf+7KEW3h5/sz5233fTdymoZbd0ZMcI9SSIH7F8FAIqOpN8b18+j+jNk6kWQ7vfQAjJtBcniGZ/WTUfommXSRDRAaueqOoiRAFhScSW7MyZktn4B2gIx+zXZ6KBxEiyU/i1JpCPbOIUcru5cBJ5EaVPo0hUscLqRZU+lcKogsKTzLdkF/KoEH14/G0e3RuqmcaWKMdxwpNOTvOLdU2PNR8HnqAk6jcfO3gQh+qnsSkiw8L6ePr203r70N2/DcbLTeCDNu6ojXVEwFwMRk8Q2lvIRd/9DOZSROQjEQlWy6S53fZjNKm/zmvp8RHqieo80PeFWn0MX7pyT8MYqybGMKar+kmMU0I3l7V59f/k7fMoECk30KcaTGDh3JHPu06sP+OB3CdqfRGSG9vWQbc1i5kRFx9OnzKg7U6froxzf+judk/7zWKo/YbyofU9OwrehKQtSqBSvtXuovXI1WZQ4xVXOj/t9HVu2Ovlq1wA26w1Lhpfgp4L4Ju1vo3hGxeyeYAzq2V4A293uv20PnaMAouj17owqBvd7B6b/WBSlaWufX5eRfSEX6cn/PV7Ul2nJ9Xr96S+Tk/q1+9Jc52eNK/Tkw9f/td6e9o8P/WjmmaAty190C1dBS8FpSWth4N0k7HhqTMR6genN9vd/rFbzNZ+c1fl7f169/3u8NtiyPfr3cfd4bfXwAoBVbvDhDcnCu3RtnQVvN1mz5pyMWupmatylkj8bX38tBzoJ2rlejibPBxtrs9RlQepuirSTztYbrr1/WKwtqWr4t2Aavzw/LgYrmnoqmifnjeHvz6u7zbdYTFgaOuB2roq5j1u0D48Hx4WQz43lRuxu7H6cf1ye9jsDpvTl++77rY7/HU9ff+BqI1WzeRc8NGI2eaH672Wo2ECQaK7YYQPC50OUzjTXQ/pWGP381NY090QUVhjhHJJFxY7Ji7CmD5QWMRYEBMB0QWXUxyeYwZpfkwMZx+h+uB4T6eJuzWyYLhQt1EILsovp//kkaVpFL5ac7X1IJDt9/Xj40XgsRvIRj8nBbJ9u3t6gsTvqM9Cuky32y8b1ymNOLyH3j50byfSvIXJ31AD8YnevE0FQwgOu6cF2KD6lZA9dU+7dEC6Vk4cmy3klIALbSMvYI9B2mw3uoGoNyOS0I1lkxrBFJdJagrJIC4GX0U4dfdU4+2vP8ZNunC9mRNwAtjtTGC31wY2C9UVldU3X05TWmEMjKu6PujmoqQuxJoYRbYUd0+tXRP1tJIbxZmi7VKRpai9cZDz9F8i3ghFOIoySSNOY/MGhtztnren2+cPf+8ms2FoQsFqmfSP2/7kHiSAK3X/Ma6Fus9Pi8jfUANRQznCgQC6l9CpUyS4l+njpRRs7pDSc5rjEKlMjqGaSl88JJiQsrhXOYjgCRiUQN6Uz0EbL1yG3Dg+4pFPH0ZRn3jEzEM++t2yKPpTj1R5AMS/SxVCMEjT1G3vI5Vpr2gmBQptTvrJLuinxkZOzD7SDslkb84Vo0bB6eWCmegFkzQj47DAM4zdywww54oZ0dx3x9Nmiw/G0U2+ZFgXLcTlJU7CB/ZuOiZdKyOO6czNI3BSsjYnoTpNmOg+MKdouzwWw2/dDJ6YasuQ+JRerKXYL5tD6Z1e4Lh8yuLw0L05vXwyNaMZEmVzQcH3txf5LxNWJH+9jMtTj0DKWhWo+KoL1xiGOatYiBljAVBvHzfrheyiMKi1buhaaO83x/WHx+7t8ykUTRILV7e0ppaujPen37eL5dEg3pm2roW5ezl1h+368Yft/eYuRgmNojatbWxr18L9seve7R67Qy+J2zzQH7vudNHUtRBvtjk5bVq7PqcpaWGGSUgNXXkOEpEsU5CauvoMDOZVj8UZkWF9PjrwI/4QfAk4FiK0EpPIMQnnpHGQYtMFKmY6hJi36Hpjj5ctutPuQDJHFyIlyzQvysFwbx6269PzYVKV2nI5BvO4eYhT4H2qN8fNQ6qqPvcvjIVKJEOx1eYj8Q3H+9sfu+Nx/TCZZOei4WGdXHuFy8aj9wn+Sq+3Rxihn7w/CDBgHN/Y81wJIOPe6ZqH9IkKLgB5biETvlHhi16H/JUyqa1YVRFCME9v+JgwxbYZjodgvazKZI7jIVzxlZVKRsfDCDOW2kBTUGfYQDPQRnnbJ6Emut7TccY7SKawznGQzMYbtTuLRJy4PUvHDFqvu3/38re4VXFsP4ktnV4+pS6M19muT8JN367PRZtFIGZt19MRT27Xp3AmbNfT0cVt16cgpm7Xo3BOLqlpZtLX365PwMixVEVcZZ29BAyusmZYAqLxzprxAcQLp3zEA7wJnoZRwL2Grol23oLlg7t0wYrAO3fB8r+GdGX5XbBg+fFeQ3oHqhbSq+O0w/Cj758fHyewDyvkUK3/OU0r9wDlG1M3jk2eDi+JeQuiSgyAS8C1i4h7DMKylTOgcoXpQvi+607rzePEPBiWf81VOkB9xuLs6fcCF3oIV5rnfBSTd+A+docUReCv80q6YIR4mjoI9HyJRhjDlqgU0tDF6IUxcGmqYRKbK2T/td6cvt8d3r3Euu48FTL57M4txzrrfDVeU1kF6c9QV97ehxzqa3hg+rCZMnDD+J7WLwfbQnZ8x8eu209f2wnDwwZSIsVT0MWo+zC0NIU/geviKvT6/v6nw4+7+83HL+9v9U2yvggO70NrIsGqM+eCe0n94grINBi3xnIMx257P00XSuWh1bPX4wj3qmRAcXkQE4Hgsngu6mk8cKssR/G7nTnT5M9lZ9KtWVtX5Zn4W5Nl+L+w5M/7u1/uPnVP65i0AOcUxfTHw/7uaCqnrpCB7AR/uuvHqPvR/IdKJeUquD10AOsvL5AeLX4lNqTC1VMGxnRvwWlPJKDEM58/Tbaa5QZGLPiZlzLm96LDot19xB2/2D6YJpPM3Pk9uLimnQX+xU3ta2Cfmp6RLvhQb+Y54qemZ5zxHIkp3ZIOMTgidZ8umgU3NRZ9eDQf9cQBVyze6yANCPAPT4vWF0/1jAIcE6MRCSgxUuNPk61mXBODmBetiQmY43P/xCKfkw5oPv7Y24Kx6NMvEM7HftrNWAWDyE+7RWtgAu7pNBuxmFMSbiThnVJ589ZsT/WvvmaHMC1es328Ct3SeUpfs4O4qbG5K2EC6rQ1O4j3OkgvNuF7Z42f3Iob5G7FZbI6RGR7kIrIVlyGKLgz30ftzPfpO3MCHrf30s33qyR1ePDi74ysKyMwkpOw/Mnb1qLMJGPwEhOVpKGLy1syBi81jckkPlfY/sHsk9hRIC/KZxSz+w6ciZ/RwYERHLOw3Fw2s9PNpHDtkhnBu6Kb02b9+A06/roftm8/ryc0fAisbukDtbTZrqmlzHi3u/tu4sQ0iBDqRh+WJmK63d3OB7XfxWa2SkB16J7gAZHtgx7bBXJom9KDeyVZ/L3bPHyKWyAGEG3d5ZgGZjAWRvb9sP04ntLE4HPqfLUVzIdj9hLmMiLLKuFFOHeZCCMM7G3e3t/fdoenzfG42W0fu+Pxu+6xewCBSHDxGOJJTS4TiTndid2+JXRn5pZuUsKDFK+FHObEvlf43hSO36rMIr90Y7ugz+mb3aw9nNpKLujZ641Z7ES0C00+veJv8nX0yiXtTHrF3+Q19coFxWshH+qVz6ZwNhkNjMV19cpYn7PrlbQeLtQrYz17vTELT8RfMJg/iz4Za+paemRIc7b+GGsqr94YUMqNFPQE3dLIoR9GeZxbL0z3LYM+mNOjyOs+c3qUfAEoZ48irgTN71PSJaE8vUrW19N9uf7cCSi4b9bHbrZGHlS+ig7WVOZp3UHljHr2A7a9HM0NNDRXAobcyaovA4iXasho1GlzLYD2GrwNCOu3u+3n7nCiSflu9w82e3KNt3SVmeYjOW/ajbeUcQ7Ok+oIeItFfIKZ4egit1b2jlEZWj5Pu0c2d3rM6+E8KyemY0uNnCX9Sbdx4nu0xMSZ16c0rRvTk6vLWEilHbr1iSLH5mviQBvX0cE9YjO1b6CNr693x4At17gh1oX6cFk+YzfwV+zMbKlP7MlMnTrajcXadFYfZujRiF4s0qCJ/UjUnaPoryg/o+pHq9tlCtPTyBU1pqW2RGV6GvmD6MwQskxK08e9Ua1pKuTsCf6szdJFgp/QmzmzNdiDa6IOCP93lOjpIjBk9qydaOoqc9dLc94Mnmjqq8/jGHyLZ/MUPxemSpvTpfTkaVn71Kt2rc49ssWnIMt6mW42pXRvifk0s19pejmqM9cfmVxXvPv0l17xjtXFyVddAzD/QDo341XXyYaXXXWNxJ161XU26rT5l+GqawrSXFdd+zSXXnWNnWfJ19MCMP9A8yzj9bTJhpddT4vEnXo9bTbqtHmW4XpaCtKQAG9hq3a8XBF1yP78uRfX5HXm4xjtmXM0rsmvP28TcC6fy5F8Dl78CVe/Wp8N0QsDX18pmT3jlnEhUV+k9PX1ehSYiD93D5vjqTvkcGZMtXUVTeInOk+FTLX11XVHFMDFSmOSpcHLZJ56+btnyGRwAMztaZpGiOvWK/QhOIWedp+7XCHD061dSQ/4yc7VBFOt/QF0QRTEDNpgkrHhy6W+mtfoJJHKFBw9v8fzzoRjO7n0dHhpv9Idnmk9W+LynN+3VF0e16NXkb2AKvylO10sBv+Fl55nq/PJxq6izQNU5ynzyca+ui6PQ7hYlU9zNTT/vRWv0MNjd7ow6+i+/typNLu3aRohsmev0YvBQyupavuywldLRzAAMTsXQa//OZLpDKHNTKUTgywtRcIQ2tz8CAFswyxVYxehpxNXaWoRbS2TxAjclwvtYuCXjV0B+dA0mIF42EhupPoaRyo2XS03Gl9Ecyo0XxvZcfZiCJMR9mpfB5sNmJoHzlbPjc4bMJCK0dtIbqQJ2Qb76OZlG4xAlJBtsI9oXrbBGERj7u1klGON5Ubu98alQva3kh+rf6+ZjtbfTm68AVM4FW6gmYX72FDGzBcqOZExk0pdLWOmbn5BxsyXHAZ+GEa6ie9ta5mRPwIv1cxPQhdp6I/ASzb1p/Dlubn+0tvJLru5PhDAPDfXvRBneobG50jMzfUYNIk31yeaXOrHikKc7reaiXrKcxOF9hq8zRWl2qe4NEo1dk4lR6kGYF5lXs2T1IxRqpMNL4tSjcSdGqU6G3XaHMsQpZqCNFeUap/m0ijV2HmWHKUagPkHmmcZo1QnG14WpRqJOzVKdTbqtHmWIUo1BekCh9/LYoffQE4XOVn6eOY5WSIQJThZ+ojmOVmGKmewQZ3Ymc7Ykn7zvHm8/2u37Y6b49R7y7p5b5W4nk5q1cu2JxW/B0+qth/Xn932bne/2T7Mpn9z0UIMkEBbIXwPVPC79Wk9H6Ju5J4auQLKbXf6fXf47Yfv5mPUTUQk+Y9FOCZ4k0u5h0jq+j2x8fxyCjpmponfmOrJrIowgJOnxMDqXTAlogzIv3ant4/m5YtYpRaolEmt9VuPVWyhWjkkbMr9FwMhwQM40Vw062KnZqhWlsmpW12A4OaijRmMi54Gx2N3+q473h02ezBbEuZCqGbGCeGQSJkVwapZpga0PrVaTaO4wXbil6xxliSxMmWWBKt+TVa602U5KyNSBHTb3ZN+vHoxYKex66HG/yxFqxu5Hsrjl6cPu8fFOG0zWZF6JpRWtPH60q2QT03qlhO046BGRnthJvGb2NdYRxpaqmNCyJJVyxiy8AAm6ORBjYxWy0ziN+fqiWyaVg7w7u0P30WLlosMqm/uZ4hWtDKAk+RvvvwNow4SVIK3WkbFcNl+inrw13s9f8kEhuQN4ggvAjg/jT1IF4nyU9zDdCkYpwY5RYX462WWvsTJcK1JkCr8eYX+AzQZfLpynPQNVk5bfZweZ5mKuaZgklinivM1xDhVqV9NmyfP8ExTe45e9JJOV4iDLo8y6N1L/ChdlM03Qu9evu8SdgT94plhJMiJUz6HmFAGUtxbYeuzMOg8pmh+n14+dimmpcuD4HHsbHD5EHmHMGHFuiz8qjbagPCcVaHX1eAwRezehmhOL0nrZgCJd3iSptc1lqV3L7+c1qfnhMOLQY38YJKE1q2SQ3Q327vH5/vu5259jHDRBTDc6FYOppV4ARqwYZlA++Eli/UIqpHBTBJxt0qOwTykjeIwe8TM4YtwVmK52chs9SzIPEP4r3fvf0rQDP3i+dQCtpugE5zyr3uI6SM+6/jS7fXSVdYLbMZCG4nrcfO0mTbwvaBM1cyIjrvnw13Xj2tKwkUN3OkGcqM7rQ+nH7b3XSiybwoc1N/o+suxhaZhgjZ3yr+qSemjPVvYY2JV7hOGbojrftbARZzZPT99353uPnXTTiMvsu3z00dbPzO25Ok4WP7mT8e4o4JIZe87JkhW9FFL8g/H43MX7Z5wS2dakHWzsevxoPjr6QE/6WQ1MOxwalD2OJ6IIOwIJIFhitXXg+I5hml6e+Inm7Q1GXY0zJT3WAV9vNMscQpnmj7U6rvDentcY4T3LxGbgECla0GK5Y1TZSaci3D4DxcRmCOh8BrEZenltB96gW/T1Pvl89B3gkjiQDiVsiD5xjnDHwOgy+ahC7MtjiqUzEfTnGDG0zY1smBIIJ6R6mgmpjPF2CRLk9QuneTjBL/v8siT8XhEkl2kVvuU0aqLIosll9Pc0Do4TVIXnLt4XJjIm8dzD80NIfxr0sUgMIHBZP5+d3hLfhI0cNwlkRoOFR7vDUFNCjiLIDcZazbeRvJdyhhIETcn56EKb9diYMXs1aJxXQj9t9806t3ub51P7Kk9WyJNQgaq67B7+qZ3V8Yl1C+2hNq/tsfNw7a7j6TqKb6I+ullF0f3suBSihfjPUXzouhsqp+6l3c7EI0gMVsiisZ/F2/IhfPn//3mc3eAdH9v/vyGr6pV+6Z483HTPd4f3/z53yaI+m739AT1izf3u7tn/PxvXezX7u60O0BhKv2n8k3x77IQbFVW//3fxb9NXfw7/sE0cf4L1mNvin+zohYrIdteRfqhWineFrzgK9aooir4irOqqAu2YooXTcFXolSFKOpVWfJCFtWqbWShinrFVVO0RbViQhWsLMpVJauCsYKtKl4XDJpsFStYpWmwuuAr1VQFg1ablhVMFM2q5k3BJNCrq4IpTYi1ujAvi2olOO93kfW6yN8U/+asEGLFKtXrI/wCfWl4i5irhhHWWnEgJlatqgvOEWLBKwBfNQWvAQYrANqqFW3BRVGtGlkVXBbNismm4KpoVqrpw+I9WBXAan2w4BcFrBQ1wZF1Q3AqUREMUfOiKgu+qiQrKlbUK8HqPrWqR61+U/y74j5qtabWlJqaUAoYTF0si2ZVtrrzdaM73ShB5MtWEPlStkVFY9kUVQ0Dr+lYQHUPUAOAmqKpVqxueoCa3qhUK87ri1EBYK1sPaPSIMLW8J7gNKwFOHyllCyA3kpUsqhEIVcla4pK0kcfadNDKgCp8rEOfiGWAX0AIhtZVG3RrnhV1GWhVg2TRc3wD30aokdDQp+5Z/7CD1xLF0y/hjU4/WqYHcBlXuH0ky1MP44AQJQZVzC36lWjNGtAuFFQq1IPFW80b4SsipoXzapt66KuqLk+XNmDqwBuXTRsVcv+4KmBvlG9mi3UbHzMbAc1276mAsVVC19VNtRyzFFzoBJqWdRyJZy6bFi3rz+YVhP1qmb9zjI+rNuf5AxmYe0VHlYNK/fnLKuDcwR/Ah1KUiFLgVLBBepkSSqZC4EyUTc1ykRdc5KJEhQvzNGyZqRvpdAzm5cVSEm94gxnEF+1JSMpqRRMoHolakFCAu3XbdGspHIVcH+uM5hQjW95wl9wLahpeSklybdgDcp3I0C+m1UtJC4vrNbi3NRanKWsQQWRukS5lkyRCiqbAqiulKuKWH+GM5iMdVm00KzDaEEL66oRvGCgDEGhgN5vGQIqmULmthUpKQXaE+AwWMtgBZS1XjEEQucrXmmOtrBeQKOVYkXDC1auJPypKsSqVqJogBMtb4qmKeSKMVY0AnjTyKKR5i/KfLT6Q5Tmg5kP1CBCFgLXDr3Sn7nR10UM5rqovdyQaBU0K8ElWQMVrfqVAhETqwp7UZSrptZsqCToiUKsyqqCDoEl0VI/VIOIqlXTVoWoC7mq4C/Q11ZWhYAyoOoFrP9t1RQCGN1AmVb/JEtdWDJdXXL6i9PFvv5ioJRk5e2iwi7KlZBNIXFhFdg1tDtwGWoVGTJSKBDBZtVULYmggs7ioAkzVkr3seaKeiRbST2SjaIesaqlHsFP0PGVULyQwBBeswJw0IcwH8ByBR/EEF5IWBYFDEKpyyhGHw4f+tqYgYoFQ65dtcqZma3hA6iYalVyiexoVIvsAC2gjZOKRrqpYKDViimS4KaSNOAg5gIXr6YqVFXIlWwdY4X1dT0H7a3qom1XvJR9mw1+mgTEy6JdiUaAxlI4CLOh8f5KwmFxANt2KDr4E0KrG9INsvaJDA4RzEmGFqYgHVDLFsDVq0qqpUKkqqJZcV6oRguTApWuKlEoYBkaCQptIVEoEB0uRdEa0WnBoGt50XKq7fDDsa5hwWu9Uwl/Qn6UldWV2pJrNT8qQfxgoirAolg1VX2hE2FE4L9WERr9h+yogAvIDtFodnBB7ABlS+wQDbGDcUFskHVLbBCSExuAJrKBtW3RVlrbtzgBlSpao31bQT85DOkv+RwW8VZ6GVL9YQQkRh4cMQCG0B+k+YPy6Rjet2I42ALAVw8/as2PRkojGJoNZUOLp5A1yUVdCZq7VYvLB1/VMMQoBkLoTlc1dVq0KAbVqoXRbPVP2GkB8mD1htIt0+jzhgadtTTUdS2KttUfrCxxNJqClcws+BzZCINY2R9r+9XQl8Oevm3EG9xECK+uw00SIIOBhpEXtNwqs1EVvAZxEauyQdXWrGrVkGqrGwGCL1YN9pyKgCJctQI6LlelYNDxBtdN6JRY1SX1Sqy4hLkKVkYjoC8K7Tz4taU2GUOzyNWWfcuK4xYJpo6nd8L0rmyxdxxsADCYzL5X6A1oyzl1DvpPnSsZda5qK+gdlcHeKY7dE6u25NQ9XpnuwY6HOlW1plOiMZ2CtqhX9AV2aQ2KCrQQ48Lpad9q4mgaMf+aRbs4WKoLNJyNKSGVQGSsXDUtsLQpGFvVFcwCcf6URYtGDgNbU/+txUoD9vftHI7GDPBwuIXgw60a71sHHE0AcMSsWF33Kw93a7y/hFclkmYeo59+gp0JbMEZB4utBhcHbJpXqoKvulArxaXj0ugvxRX6qNA8XrGG92kwSwNcSUhDwsaBg0HApdtyf1GrOLYsCl6vFHPQm98qVCGMozJp4QvEqSplwcBz4YHvOIBAT7KqLGrYsfUHx/4mVjUHLxm4EMBwZhWnL6fpvs6taqxe+ZiPO0fY7POy1S4saFYzvGC4x2sdnV71lVaFSqsSvvabwOCCybWS8LdKebnT1xwVao7K7yATA+mr+rOxkmHpk3Olrz+3KjUifSpN+vrzrmpHpK+dLX39+VmXYemzv0VKX92flzULSh/+lCx9dX921jwoffTTDOmr+3OzxvlXl77Bxd/Q26c4g42nho5uPlwsa05fDgnHI4tztK6KSqyquu98r+uBgNf9GVjjNKtrHw+aYeX+3KpxbtVNUfFVW4l+bVqVy5USvKhhEYatNW7b9f6qqrXxrioFXs8S3cG8gbI12aNM1bStqnEbX+KSjpYZr9Ago7+gMwf2jawGg64BI66W6LWFLxRoGLIa3P01LIANOJ1VXTAwgFZtqQo4I9Z/qswHWAgcHKBNYyuifQizo5GmmAI/asULkGxw3LQFE+jCgaoCewj/CkNAkN+nKpgAxoD5zAR0W0JN6KYCO1FIbAOKKVus1cVkiWa/LJhk4HkFi0py+nLGrK/RalJbVdFIsGH7Y0b2BVuptirIH67HDs5o2KoSqkDml7IAY1gIbT5WILdobzfoEWSruhXgEQR3MfrY6SiGRrk2PkIp4KQDlJv25KD9BOyvGqUHvBQ04DAG1PtSFKC42KqEH6oS8JIMgKfODDMHkwiHBs+JaGg410MjQURwaCTXA6KgNRwQCQNNA1IxPSISzgxwRCSOpbLlWlNOogscz5mgdxJ8otBD/TeJh151waTC8xZeMBhI9EwyBcNZQyuKmRqK2y+SSPiqTV3V0K/OYPfXlhrXD7BrPYONzncULLNpYrhrgvEAaYKfjHJthB4hOC/AEcKtInCmhd0UjFAt9Va5KVtkOI0nMBx0S40M56uKE8c5OvuA42xV1objrZLIcbYqG5oDbFXiPFK2XGvKKXDOgqeZKWlaVrBHhYFRsO1r6rpgbUluLodV/cWyxgWxZV5WtYZVwAzkkBTEIdniIRf5cTm6JUVNSkzCNgJ5pjkG/EGOaR1Wg5C3OFmYZhhynhgGrSLDOCoUmhXSMAxZggxDAUaGgcARw1hlGIblWlMO2YTtteQsFwVrK/uF51uw8LR4JATU4FxuVQOqFv2zsMloYUeMW462pboOZ/sWQgOrOi9LH2fxN+QsqwpoDOcECCNvpGZ102p+GnUhYQ8HPa7M8gCGC7GWa3UBZxTEW9nAxg52YFwrBAkCT+yGzSmxGxwFxG5kMrK7MtyGaUvcblrDbW5UdAuWB3Eby7W6HIcDj1Vdw86a2y+cyrjbxsNN2ByWjf1V2C9pv5StgacAleM2avpGU4OWEfNzmxyLDD0UyHWp5Rm0J834Wi/BYMCic6gE5waKsdA+TlD7xG3jHGq4IuUMf9FTXxjOwiERcrbmRpBrK8d4Pt+ggjByDJ4PLccAjziL5VpdjtPBCFi2FAAAjWIEAKzMHI+kmhLKNfZvwn5JPJJ27Lambxo2dNivvFzkhoulIi4KvQ3nMMeQnTDtkJ2VVgawjhM7pfa11bVe60St17pWcc1OprmpjMiq2mgIjF8gxgojslVrVGqNOqC2vEPO4lAIPZSas42VWSzX6nLEWTiE15yFCAl0oIGJRVEScP7Lmf3iFKzhsLNvBjdo6nKv0YG/GRVgZzwpV9Qx6KCstHKFo0SjDCJ1AP3lFSa8VqrocqzsV62nr1aqjBu1WQJHazPNuVUCdBoJYg6HYysOZihXRlnw1vwNAycUdzw3TX930OA2vfIua/gbGjw1mnOt0mePtdTmXKu1Amx4iO2lPk2EJQv5z8F9hvxXotDGqzYIKthatfovJMfwT0OizbQp1jJjGZRgwWNbKLE1jhzXA6H0OleuWhwmHIhSaVOMyrW6HEcxgtgWkuIGWF2Rpig4nu2iIFFARwV2aWP/Bs7dGoStkqYCaGDJYZPSmmJ1ab/wdLJ1Qz+cKBU8n66UN06lMRMAvIzaHU/6RNtjyBRkQm10sZF6UTLyWcOaT8qj1ueaaAWQzjhLfauMMkYLGAdOCz0rldEY4D4nXcytTdEyLfRUrtXlgMNwMtMiO6tVDXq3AhEGzy+v7a91pV2yvEb9DPsntNnpb4KCfxwu9vebDWxlOPRvsFlthq6cpr/xaXBz44+haOSwdt+Shti9f/Pa60bC38gPq8Oq0KVSwULTKrBe0LPOC97gYSqY+A3HCC/4sSoUBNU45PvWaQMmFcx6H/mhD7XpW2ACLbDGGy4jhjEvom9RCLQoGp+bRAyDXkR/IRW4kMJBm4f0MOxF9NcNgesGmMlD0sOwF9FXfQJVX+MdMjF0jIj+jBU4Y4Uv2EQMHSPCCfVCQYXDluF0x99wujda23K97jG9QZaguHC6w2pc9owGiL3DeV9pbdsKpVc7c0TVwEKFYng2xri1xmprg8FKRKsdrnE48UtmVjtpJ35tNxNYrtXloHugAnnB0bMhMS4MyYKVLjBwBjQshKvg1gXifCBIA77w9Kl1wmlEf8YKnLFw6DiItsKfKkSnLVlW+fYNyE52NhmIm9y1HQS4lcL7B+KmUiErIsdmgXwQYGUhvzjyCxYeARtLgRYD2A2yxDM5XnCI2CQ7QXL7VRnrAL0RbesoVNHXagK1mmx81gH+FsHihay9HkMtGy9YVls2Cvsl7Rc5ZuAL13kwAtAxg6xVdjenuG8fJvoaW6DGVl6TV7RRKsC4H3WobD1XF1xRBdipjY6pFjxvqjGTXNnprvzTvb9KSVyllHfPJcsoYUSPI7jqPFJJosTSPAcXM59jFERbv7IOUNbeRzcWfTGzf2itY6GtjKC2tU88ZX9Rl7iot16TAH8jewYPknElEdqygdMJjKNojYkDjmkwcRr0GZBlA8YOhAesSjcMSvbtA4n2Qeu1D+TQPpB9+0BS8LvPPpBD+0D27QOJ9gG4nj3yVmt5q8kBDvt43AUoHVKAY8UwCrKmOwcCpAdnEGga8KLjPo/8+qLgZE5zCHllGG/RkIcdJbJcqRbjK8G8bvS05iSZaNCj3HDtL5QlBtFoL3uJ5w+lcXKLSuidVWOPGJrWuAvxbER7Vc3JAv1qHA5VWWL8UFuAs49jkEEFgQb6b+j5gEscZW1/bdBxCL/ClAd/QSltBWW/0CML/zJyJEDMPx0AwRfeDgGdgZ4cCMWv0JODNwEY6UBZVOClwGikCu9zUF1FX8549y06iVEwEPjPbKi+He/m0gmBKrlUvUWOYXRmLfWKjOpElNorLnnkaufVDmM6oULnYAW2FjEIdq/ohwFvQMWZ9odW6IcB7VDxyv6qNUFRYbwwtFyB0wwv1VRcuxgdpvUtWYnHeNy7caXfQIjLCmcJxH9JfaKgEKyO04NDVhxp4BZHT1RFs6aucdaAUxyDdNgKBxjLSOPrgfMjVKElRmYzXB5rukmiA2XJ7qATC8FRlI17rdRudwgWpDO12qyOCsLrcAlrMU4HI2H0PIIjDz2PKmbmUdWYeVRabc5bM4+qxjghQC/jTCnhlgjODwEjVwL3FXiCcILQoq7sF+p6rudHBYNJOgZ2zMg3iAejuQAH6jQXmrLSc4HKKfOF7KSvypBFSYbw4opT7DMrqgoPn8CIxOBj+kKTHi54YHi26+KXzrUTNMch4tIjJcZUbyS5S6XgJB0m+AyWEdIDeHCLzglmpEJpYVDGisfNBc4TDGyE3mihgKBGFArRkHIFDzxJBau1VLTm+Eq7sNFSktq1QkLR1hASpo900XMPfh+GAwY6S4sH6H0tHo0Vj9aIBzPSUTVWOlorHcpIBwwOSQfcW0DpAH+Ylg44fCHpwK9WQ9HiIa14NMKIB7RM4gGznsSDG+lojKbELxxhVaoCNK35G4bTg6BWGCsP2hiua6xqkB30fuEXer+4e/go+5sLiRuI2rsJlmZzAYBIKLTqgKBafYqmhUOHcjagP1E4pNDC0QitMiqjMsyCWxmNwVotJLCyVTqOl6RECi0lRkg4LcCgZbSMCCMkegVW4IHBk2+ICcRW6qqgw0cASTIirDIR3EqLstLSGmmxh54Nq4241OZwuTkfdYLWI3FpzGIL64wWl8qIC9ygJHGhLzIclRGX1ooLrMW4mIA5rMUFvHMkLrieSltOmS+SF1g0SF7wbygvtSiqGtvDKz64BYXwC/Lz4SUarOGeucj+jkm2KC8+PxP9hKeYQosLnhaWld5AgX8d7VRF60sLvSKYNe2ohLCrCV4shCmCawcwXYebQJw0reLGlW3iwSsTBl61gsabm0GG6yN6SwDDQD5tEFpyYNcmuAPUr9EJ3Lita2F1QqMHGacfrvoQAWDmNddKvAULC2NbIEC3qpX9as1XU9ovUqp1gddphhsw2d+AKdxkNb54KzX0Eqr+hkLh2aLfQ6mGbkLV3wYoPFNrvHfU1HAboPrbAIXx8I33Tp8a7gNUfx+g6Hqcz6uMP43shEY3QBXGP8N1WIhm8WyFVN8+VXSVtfXhGHocVd9OU2iLed2VSlxGL9Dm5RzFYEMVaKdcs5SYBbLlYCuE2hbvBeIJRl0FAhpyhDHo3THsjGuKtEFR56sSpjaebjRgw6BbEu8/0J0G2CKjWxLOFWFGY4yDw9a+YaPQeBHeABr8zfCVFLAc8tdGiWRi9Gtw1ctMExJSoe8Wj3OEsmxtia0OM53bvrjoy9Ljz6Wf+gp+oNiRk5VXn6PShbWOwiuYo89LNabP/dob7d5SBPS40ATHNTpFeMFiRNwFA0EvpEWFgXsS1AMG7sGBXEX+WwhWkLXR4rKxf8OtL9i9eHOPM5ff/QVV4aopff5z+gn3J+TfMDcJ4DiKZBemMC7q3LjTRKPXy9Y4ecHfiAxudHxma04hay60+AKTSHwrK76iMqzGU0UU37I2rG6NFd3WjRFfZsLv8EYMsbo1BnV7dpmhr4Di/7ixO1qml0LIsYD+XVTnlSK7SBQV+nZBmjHmDlJPVGjdIe8VJhFw9UR/6Wxx6VReR3o7XDvb/trZ4tqpvOtXO1w72/7a2eLaqbwuNPzNLmB23cJ7xHD3FreDcN9zfCVT3vWr7a/CLa7Cyrd+tcNFuO0vwi0uwm1ZNCXsivq1TZxCgyHEDO/QUdxpqVdlIchdDhcysU9SbwBgU0pbWAirqDHYWjuDGxNl3NgoY+0LNloC4msFxTFycBRUFA2O0gwn1gzbYbWx7fG2GYWQMqZlWNi4BWkjSEsbQcqYFmGhNTCgqdDXyzG0gsz9Bgx1SkwBzjFOegBSROBRPugG9ATDaVzVVvZv5NFSBd5SWknYz7cUPsAKuPRITKhgddI1Wtz3qKIuS/vF7BfqA/cSfNs3Y1p0pZWVdySNmw2WSqmzv+gIYqYjiEEqKZkE10MptfcU4lNxLGFeV8R6c7mdaZVUlzpIDZJ80GCCYxW9kUyvqAzvJDL00tBgVhgqgX4kbuJSZG02arKxAdrM6H4pjDWPSVVoNBsboa01Ps0tGk24Umn2+o0eOfAx0XjRF8Xk6eFCJxIOF2x9abhg1avR8QoV6rLRPuka94L0Je0Xel6ls0tv+4ZjSzkLvKfk7TCoou3bRy3aQHDXzVN7GFTR9g2CFkOQmTenTju8VtY6KUDwFI15k9G0niwgbhoQDD2F9cqXCMSXCcRJBVJiLhDm3fHQj24DTj6QEhOCMO8ZDP3oNuAkBSkxdI4Fcpl48oKUTmKQEjUr8y4d9KPbgJOQo8QJzfyJScrhruXib7oBFD/mFT/60W3ASTJRUsobrwTSj24DTgqHEoXQe8WLfnPrO6kPShRD7hVD+tFtwBFESkjD/YLoS0kzyEmDgsj9gujNS+MIImWm4X5B9CWncbPTUHoa7nPdMF9+GjdBDeZ5qeEOGgSaMqcBs/zDDaLhzSFU4KDkcX8AflQMGRVMh3+0QgYuFYHj3HurCI4T4LpdaW/91HiTZfKuT46LPa3pjpL65lBNl2Tg7BCiAfCSS83NpYOa8nfxtoD7I3jDqMYtBv2pMlUpQ5MCH3mjL0nBjXVdAV2YLbhGlflTqz9qc9UIgov5CkYJNvqYCAb8hlDKHV9HTWCeHDim9pjHzObugUNROtShS0dwfwKjobXbAjw8+pygoVtGAq8o6A8a5EYnd+DGEKiMM0+a8GpOmV/oLxj+IWu6Hg1fEm+McUoXRgNvw7AxaJLiV42ZoGqzWaQIdgrrsJvF0o68sCNf25GHchgbAYabHmaJY1thni0alxoONvCKGwS81njHDXDWeBrZQFVETOVaUw7vuNEXM+Ua4jP8jbyJbkIjN6MRpTRqvDm66EdOLvRa78np8LTmeqR4Y+Yl0yOlx4my+JQYGk3TUnJjhZtp2Wg7HIwympZ1CwMGs9vOyspewWNmcJS001K7R8BvZ/aXittpqcz1LpqDUh8V6dHhdl4qOx3hDBgjQeCoRU9HSFxH0xFi1Wg6QkYHmlTCTpy6NjOnbvXg1fg3ZcrhPUMFIoCZKegLj5wbGDxlv1rzqyjtF7Nf3H5V9ovSdLn5tdyUTZjfCBNieBS5ZzF18yFhXqBa+C0S5llN3URCmMAHb5r4GmijA21NeG2NqRRryNQhlC/Qljkpgxin/HC+bSzjntXYyevDOKWI817A0T+aS3fmrp0OEmm1a7ARiXft9Jm+cb5KHrh+l+PSXaXPRo1jRGBUBMOzJlbUdAcVPip9/a5GTxZ9oQ5TbtowJxMQw0Q4eDzn4yC/BgfPjMPjq6q+JgdxuEC9R/NSWg4q31VG5qQOYpg6B/P8+DhYGV8rZKvBODntY7XXPWpzhbEyvlUTdFjZSBemnSVK6ktglXFYQ2PIUGVvIJTm4m3bGIcfN2ZS21h/XymNa1XaA3S7vW4b6+8rrYMOznfJQQdajhypRa1KnZYSHB013lqs6Tqt5EWN12lhe1/TBVIsh1GLsETiZUEqJ205Zb/oVHUgwo5Bi8l56jagBExwGaSCwwFQxtltDg6YNmdlY0aiNiOhzGFlZQJc9HKplE5xB3YcjQQXWjngvXUaEzCZUciZvoxjZBtbF0bKIZRIj480d3BaZqyZVtkT68bewZHmDg6Uo9MXSLyhRwoCYWikwPyQTDvG9ZgB5yV5MyAZJN6pAd80urUa10pxch8xzBYEdoOX3Ta2yx5/qXO07VScvY0PfeXYWq0bICqDdAN4ftDeEMAXPDwoleEfbHtqvGqGVn9rYnDrVtgvbwwucxItMUxHBGnEfNlCuTH4cL644biDkPCkSHC06/AwnZx914uz1QIJAREkkC1HAw4GrTai2Rp1AgEReuUqG81kSPGCTlMgAZGwFITblKUv9JY5KZ4YZldqSq/LgXusLCcbE8P8SnDB1WckefIxMSchE8McS7T99TQwYWUxTNraeM0tOO32GVlOUieGGZjgWp6HA5XHyHIyNjHMswQxeD4prdjFhEfLG2/xuTdr/iBB9Dp3AeRipejZihcNXv8GtdxAKA/lqqPw2RZSUJb2i+lTygav4dHfKvtVe6e8k6SKYT4p2GX7tGdlbjuXdDDbS4EwPNPGGCtl8nnEHW7b2AHa47b8iqfclIcDTmnP4QGNvgIPXwLDmFQB+bbpbBsCmOD6Z1s0zHvKzZx8XAyTaDXcv/jjj7hnbmrr5vC4NzgmpNdJ66v27N1AKwC8CX03h71+67o5GKVCQTOArjRI41SpS+0NeA0/Bx2KgxDjeLfIUDzxgUsy3LgoGkoWg1+VhtfQgRB+GTdIQx2CVBAYyMwGOsfJZcYw9xgYH95hqS9WtnAgOJ2IN+x8P33q/tPkBRN7rQQdB7AC0WgIzFIxnq8iw2KohZ9xPQZQruF2RavMpZOmYt61zcnoxjD9Gg6fj8vN0GGE/ioTKO46jlDtuH4jmgGVDt8El4zjQDJbk4ADSaHpiVcoOCURossZoDzQF8MwKJ2uN0id8wlfM3gNPxPeQsNzbFkaP1PD9d/0jIEAF/Ts4t+q2n419sv4j7Al/aXsl/EfNeTcHfiFnCR6DNPiQeSAd1RtgFlkIgyaKgpCU1H2TJ6cqYwYjPL54PSQ1h0fzo2RIyOGXmJByPAuO14Ywv0TpL9oMMaVvhpfIgzmJBRkmP2vqf3OjcqGlEmzV5FiLEMLchISpkRmaNHppoiDwmYXETZhUz9rS4ZcLZp/kHAMw1YZhl8onY2lwbBV/GpKX14W5mRLZJjjsAGGexzSlRqVRLIBm8ojiUkCiEdOGITyqqKob1c3PaFsuBHAptKpW+AOi1cUnV0AZnJsmoDd12pVjdv1yzRhcLU73vHGq1HHGy11No0e2JLX87xR9iUIoabsS/j/S6UzX+qVECS1EdrhBlkqzJff9eakw2SYw7KBhdX32kYZuX+m22ZkTEueeKWaDNamup7RcN4tX5gPzLyz0DTmtnojrPkgmP0yd1YbUXlNCicNKMO0nRitNYwooh8rPVcGfuHLLHajcgrZ+pLT2eWQyQbjdWBffSF/otZy2mDYLZx3N8LKpLAyKbRMFhg+tCqVO+WdjKcM05M20puPlH4cyQiIDj3jmUSLH+9g8DNzE+f+tXh6Tgeo76WX4pK7mDsT5n6DXjQ4f8MQZ+KpPbho8OBiOOOdFK8M87FCiJZ3xpvtHtypQV8vN0EMUke8tZzpp8kq7aYwoc1gc+IxIcSG0navEeaQVG+pIacleX1LnZcfHMNkvUKUM1mvaHdSBiZzv7FtzD1hZYNwMXE4Ga82CFfZcGfjksfr8GS62hBcKIVcR98lRq0p4DUZ88j1Bg/igK8CM3XCF9qmmJ9S2b+15kvh9lQUDYbn0p9gmKrBiLjvHeFOT/kusjBPSlzm5MRlmOYWo0I97jFPWlzm5MVlmHMVXszyNiAmTjExYTJGMXscbEp4HWxOlleGiUDhfquPBR4Xo5M4lGF2zAYMI4+ZVauFBxiV8f7TRSxZJR1pUNBrxS9PNK53jiHRCJJ6fUPXlqL4DFE0GNkp4Ro4RpSCu73BIws4vGgwJwM8qIA7zaHjyElByjBxZtM2fqbbkP1Rn/v8DDf0vor1vtORKLtizhvtgau8DnliKPLYJMVs8AgD7nY25HyHd7nQ+c7YwIZwzDLMkikgCamHtY03u0h+1v5RWCpKelgM3vgyxhicKhFzRUlrphM3zJxEowxTZsLtet/2obE+eMhsjw4dY1JUPf8xrGkX7mPE2qi++5ixMffx1XzFFDwHx8Cac7AZBDc45sUWpdQ3ogT56OE8p2y111igj3445Z08owwTZUIHvUzkPtt2sAeLNnJn5WzOYpDJxoQ80O0xpSOhaDOL+xVhlCgmbGDGHhP0suvACnMyjDLMeymYP8TwnGP0+lf1riaOlIoBfBQX4oivLkKrcFm9xjBUgYGMcLABlzaMOOqji0JgVOsgZzNz8oYyTGApeEAwTUhuwEse6xz/WsnBtPBBegirE4mTEACMqVTAhhW80gfAEJoKVgB8mUStwiZqFRQRKNzHAp0koAzTWYrACUTjhimE8gJC4vz2HK9QUSaa+o9ynnmZAxAdzuwiO5ie4fBeMTfHmQLPGIbHlE7yT4b5PIU/lS39GJvNHpMTGhVJS45if5TNq84C1vbVIQonJi/h2l0gKrNRFVVtvxq/snR2B5jcFCTEaw3JEUEkRvKIwJmvnqDyIlrGRsZcyB/aQBDnjw85a0lUfkl0NkeYnBWC9bySOHhXIc1h+rXW6Atpw3NhTA6HyY1R7jDBB9z6FrWVu1o7SAq40VZjHAK8nom/uix0tjqYoVbU0s9C71bnatk9r2aM26xbvvXmYkXRq0chapPwU9TmMQRB6TyA3Q2zX94MlMxJ+8swkS/czfYxWZSR0/wPvt70pzQd6Iqm1pE0GDFBk7sR9ssfCufkPWaYylg0/uVasJgb9CSi5/vzxEVmPPp/oPvzlzfkmcnYN7gEryUZ3ycmSYaoX/L3Y5Jnc6VeCGa/8IRqwGxnI4SZnyEewMts7glZJodT5YtdrsyN6kEQMzmcmjotmvlKMcw6PURtLndjch+Kh4WQRGS1tIYARsSTJwnOKVFr4NPXeIZaYQ9MPLMQOp7Z5bqza8KU2cKf34R+fMUky1cO+/Qa/ZJG0auNhdROJkGJTkDzChMZI6Q/1tNJQs4wrTjcXPRy2EaCtxQQYyIW/8iRyZqPkOziwprHGJSW+AdyYSwGYCmFKEOaVmliE4X0xyY6WdgZJlYX/gzV9CNOP2Prm/BOI4XgnqEcD5z12EZCTUf7SttXsNsltnEbB8Eq8yYFJnOjhxK0fWWiJIQmRGwjlitbrtXlyJsED48R2yRMU8h2gwpA0FvsAAUfY+euCe9kmGeYK10ErniM5pj/H7S2UyJueFjiQtRYo/NiC2XiYAWeEHmkydn3YPpzeHHay7TXzSn/B7I6ra2paLTrQijzMI1Q1t+hhF/jObsjTISOl3c9m0t/VvlcrnaykyBS9RVPMSgHGbMmFJxSjLnhfcOi7AKjvI98MSe7PMPc6aL1n2eI9nX9xsR2ec3dqc5JBta8x4N83rrizSHcnOIx3NAV4iSdZ5RZ3puUjJ2zzsedc6LZaRPV9g48MfVoK+YdeF7vdFNboMBSSkcGITl07YVjAhlKpHV5uqmPMguBp5twzikw4/zgkpaTcZ5h5nfR+pdyGbedWriPul72MXpjAk4y6BUJeM/It1WikzeYWCW9tlgbfzMcIpBOrmDohdk+4aHnYPvkpNFnmBjfn+tN/xbBWwiU5n/gHG/efG4jKdsuGY8nxshuzHEFX7I0u1VZMi+Tnd0SPiAAyfe9Ely5ZyL+d1LSEsa/5mZo4tzD2AuSoijbtsDkhbhsSUxYC2chki4xMfjSz9e5XHV2SJimX5Z+N4t9iOHSXmjMlYn/Ma/R0AEopN2/YPw5YJIZv9+ooQZxJlRMMuMUlMx/LcN5+4BhWn9owKcfmoB+wEclbDJIXOZk88dVwn6FKwwk4ihkKLZqVnO0qQqJ0Y2QCFLS8xOgFfD+HH01Xv3g7MkwK75kfm+K9CSzctLoM8ygLgP5uKQnbMtJuc4wpbYM5OOSyp8M0uSpw2MkeANgNBmkZK0vGSRzsnkzTC4tuS8jMZOetFhOMmqG+aVl4ACaUlVjOCVdS4RA2cakZcS88VLnjYftDaOHGrQjFkOrGaoF7R2AXLcUBtyarIHmEctSaEdgCfcSUeRhr65TP+qbWSZbYIn5Bk0mKMlN9lhZGqUhhDAZBJl5xhLsJ51BsDRKA8rhy9arVpi3JDCNMY4W3gdF9QHLHV2FK2HUKwzngSAHzIcPkSmS03MqhUQfDSSKlHSGjcWEvv8htZqBX5Ut16JXhxeSstrgF71ICV/c/q2yX7X9tbF/E/ZL2i9LA+8iVa2rwJz04gwThsvaf6lSmWij5EBEY5cnmeOvEXZIueDVpTlOXG74ZSiiDUCEAPYacuwXGCaAjmxZGxNdUi5+VUi8Y6ukGyju5GNnmGFdBq4pKX52L9HLEvUf321ZodkCdgrdnIO4abzkC05JgU/qwED63JayNifEsvafEDsJ6RmmmA+FzypjKUpR0GbavHnuS3bty3HNMGNZUo7rip5GC71VUGXIdn3xfkFl5sA5t7UWWsBNSVQgFBzFFw7gyRNf4hscpc5yrWW1kHjAAT5Zad42cNnvmJSYWT8USKt8JuX/7EBavVBUU/Gfg6jZQtpDZRk4VHZeKWD48EAoklY1/8dE0sbx9DKUVofNFvgel+ap9y0+5jzewJQYicdRsc78P3g8jlXAvsCccziOtCf2Ek/sPcrWsZqVHHE4K69X/3+0w/ksmfNdz7KRVkaVX0adrYUau3ir/i+5eKtlWF1et4WDPLqCKzH8YXjx1nmXgakx5736P9B5T1zj4158KYzvXgq/7955dIG1I7779v8m3/3FZmHEi29t/wIL0MZAeH33zgMVjF6o8LuX2yjX/f+kt0S0hq1S3hIZ8UJLusQLfiS8xDvwIzkPejB8WANexPNtvlpPPm7nJQ6Gj2tI4XcDeR7jYM5rHAzfdIAQMG8D9YQfCfKDlWLKjyRLrx/JeU6C4XsFrK6LFsi4zPBcxnQeOGD4ZAEXpb8Bj1fOeeOA4asF8MqwtwGPV8555oDhwwXwspe3AU++NuelA4ZvF8DTKt4GPM4057EDjm8XSMl8DdCPeP0XU1IxdCWhehZaVUq4qFtpHUfjrM8xwIbECzpkKEEgjNaCyjjOYFqiDmrBb4aRwgoWDwj+XaE/C/aEq7oyizQXxrykyzGwCafoGn6xRFOplkpJcH6UmN+L2y90XkEtyJUNG2XIqirQW1JhhkS8Dc4oMZYsgD1yxcA4kpTpBf6GmhUcJxLfzIEysC7DV5/n3HkfguNzD2Bbti3kEXJ4PkzLz533ITg+9wAarVKrlrkN4MPZOlUMvsnMKDQSvAlSW5l0z1zHRsEpAz1dgxlv0RnOKbkSXBInGw3f0aHcYRhHcg4ParXngcFFQdStZUOPr9TkRgXHACNpEEyat6uFfrsac5HBuVuF0lCtGkywz/DlT9p9oGHHcWw56g7wbtSYb1CDhpewaXC1S4BpVysMs3nqWtqnro3GVzY4qxT2sV4s12qLm5NjF/IukHYHdwQ+mljh39DBCt5QwTRkjm+FAgfJOiwxN3Kj69ILLrC9oWzhkL69rir9Ra4QwAbeMIbPAEk6DQL/HTd0kTX0N2moScp/zuFL2a/WfOGdeXh4HHJJmS94hxCMHKkq3Q+J8T0QNCsh5AwfPsALW7qGtOWU/WrNr62l0VoaLbdflf2q7VdjvyyNVtovZb8MDYXPDwFdVTL7N26/NA13AnFnAsGqpkp4CgeeCnUmkMnMgNcYcPUmQxHP5tALR28UAefInlFof1eYEgn7Brm+Gp30C/PWgfTQRFL6ISpM3I+dNtMFJiqlFGOtni6liUk0u0w02lE08M1GpcOyGKftB6ULAL9aa2ISOTcbG0FaE+LmuBZ7ZUMSOTdSD/tEymkDfcFdo5FcehcY81KvaoxkUDjbpNaWDM8G8PVZUDbS1JUYKwbtKYpuKJsC/ifx9S2FJ8P0KyhkVlXu+FXO+NU4fsqvQYeJHLjzPA3H12bg0aUGzBjuNGCS0UFMC24TBQkApKvAxBRSD3xN6yAcmdRGT+qACbCucVQhFy9FmkpJo9oIs5dttUdW1Ob5YEVrYo2vnZOZBP4JreCUfSleKTOqvNVrobIXRRXjZrullFVmLSoujimGKCyFcuZxyBsB7m88qleQzo/Rs5jwfCaKYav08IMK0kOtz5KoPRpquGQqKY8mbNsw4IW+Wv2lkAbnBWxQa3Q2K1bSlztkjTNkYHyBH8trqQytNe48CMTxfR9gjbcBqd8agWyfJlcgZSJscdKjIYAmvz5HBOHA5RMGhF6ygAQzeMNWL5oQQIwv6tHxB8d34NDHhVmPKHumfmtYVdxkcmlITCpWm1dobCYXaTK5SHpsGAwyWjVxEcF3h3ElrehRCpIcrt12tc63Z5IPGsmpZKMlp7bPTFO5VpejBFlwK4IWP1jiaXmD3KckTYCFtkB4Eww37QKzKuPbZtLIUKlMzgyI2qVFDb2jKENAnWQI2EgyRF+t+VKqECu40QiDWeOGC313uJyj0kJqCs/mwShQTNgvab+U/cKcVfAKBNodgAUcp/pXDH6hr8p+1fZL03BlTzqyB3a7whQlHtlTZsFhtN4wvV+Grbl+n47UjQ5oUSYfkDRrCddR7azSSsfsniHggZSOYnopKY3SMbfTIfROK52mMgsI0KwlbMTOPrLWendro3OMhwfe/zZZ/qxvt9YaB9Y+qXP2VGitM1gQSKM0aAkpNChrQdFCjVEytdRKpmFGx8C+mXSMsjpGWR0DWXBgrcSHVgAU6E/ljo5yRqfF0fHu4+hHXA3AvoWuGncGr3AzBImhdI5S7daQdjVgeleEpynkO1Mml0Wth4prv5Ge9o155QbO38jTKYw/vlV6oMBmoFMPUBfaxwy5onDwwCwF41jQLQVg4kpy61y26UdbqYdRViZbo+TnHAPmCK+VehzxMXcKaAQjEm9qlPhIRaUvROmU9JCkobWPSdkXaxv05eOXzqdc6eGFlml8Bc51qWNJaXylHV+J4wu7wtZNTcqd59M4voamwFIUq7rtuyroR5xzkCRYpx2udc4rzCaj7KTTel415tqeVHraVdpfzbgeTHjHl0y40g5no+cdM/NO6oMCadf6lplpB85smnbKWnDMptdsmJl3mGAWJ549VGHMptdEY7MsWkz+rOcg6AyahMoYc1K2ZqLBKqcw0YuszZSrhJlziuYcPHMqcUzMV6u/gM2ClvMKl3PXAneepuP40hzYGr4phz9yfUSAi3GpX/6CvQ+skSbGD+O5GHqizYNfpc6dBcsRJxk0i65Rk3BqT4kHuHlryjwOVotCvwkuTapgfe8P/Dw0bGj94ZrLbIZgu+TCVSFackvzTKiyWT1gn6WXXGFMcHJvKFsO13dpFlrVmlVTmsBA3EOXZG5LvPXCMAMEbPPqVakoRrCiuB8uNU8EXRpU+vYaeIEFPhtdlbTbbFDPSEZhcWa3qYwZz1ADo3bBt7aU/Wr1F4xmvWorUSh6yZpVBZ754zkY2BPm10YDUJSMGMtJW07RlytAjg8EXxqEFM9eAeJ6dsObe6ibtK8fw2Bg5JrWWPBaZ4M2Q0MADAsUIHhlFwUITAOUG3xdG00+pX2ZSpEASZN2nQlt5NfKWG+lSbvOtLca4kpaSvDHtSSx1sQF4C4NRUmQX4NpPz+RsZLEje7mRnVXNlhMGDniyngr8PC0bHVrFSUQJSuNcJBjouUmiAh0dYNb+xZi4Bg6bGHjgnIEF81JQKBhkL4aY+XQAYLphskx0bZmtS6V1FJDX635gg0t7ggqrlM6kahArLGitBWws0dRoV9b8yulqYe/4TtqqOspxgm/KvtV26+GvlzhcvwD+tnKgHYausm5824l1+9W+u095tmgOg8jcnoYUQTEe+jc5s77fBwfcIOHNLwNeLZLzotvnJlEgd4Ghs5t7jz5xvEFN4jz9DYwdG5z58k3jg+wgfjWuHo6DQyd29x5sY3jC2zKH6vGPU+2cefJNo4PkKnaG3bLucdT67xYxvH9LVV7z1s4Hx7YcOfBLo7vR6nae97CuUcSnQenOL6IpOCUZZiElHOPJDpPKHF8B0g13reYOfdIovNwEMdHblTjfZSGc48kOq/icHzlRjXeR2m451kc7jyLw/GVG+V/q5J7nsXhzrM4HF+pUY03bSfnHkl0nrXh+EwNvHbha8Dzrg133rXh+DQLXur3NeCRROctF45vkcB5hbcBjyQ6j5dwfDVDNX5JxB9xQbXLJwaSoKcXLi8rQV6eqoCHa9sVd118zqMcHJ+PgEOhCl6BEA6580Fjjc5TKFPpMyTITwPvv0t0RzJML8tdc8J5nYLTAxRNwSp4rd2h1lx2DqnB004M03yhAYF04ZI7URONS82ZEpj7HyJivLz0TAnnsQCOye+V8E8J/DF2MGrvYDgTCBPEBwdDxQ8GaMJhNmruJKDnmDsdCtdiJWTr0LPPUGEKFsovoMlJHA2FxxruMZyTkJ1jNnEMivXwsPbMSSf9OMcc2sr/pin9GDsIsOFr3BcOuJOjm2N+6YCM4m96S6Q3QIK2OxwTSlPa56rRUssrYWdGwdChJpkrBU4+a47ZlNEGHFzcoN9qTFqivSGQn5FwtKbbYOtRZ+GWvqKUGW4UH3eSNnNMwsz8IdP6R9NvRt5veWbAsJN4ia0Bz5WCdOerRrrWoJP1mWMSZyX9K6An6zN3sj5zzMEM6fq9DYh4QZGVX1Ac7YA5mxleBfFwTF4GaSDH0C1tojVQZDjXM5npyy0NiQxktkTXPxyBwCRzkTiKAxMZw0G0T2RUtMhoQdEM4ANt7uRL5pjkF3bHPsMPf5RmEqDocNz7wSsjRB8exmYKeg1+AOBBg1E/sE0zX3XRgP+VGAExHJBbpMGnuSCSCn50UToKCPPmKulfkhuPAnIS7XLMGQuuIA93dZ7dJO4qCLxpB+LlpKblmGFVKf98wB8b5CUcM4G4CK1+4IwcXtWgHObALvoRUyvR3xSnJOYFxKx50plzJ7srx+ykyp+RnX489x1Jw5UNIg2p5Yk0/g1mGh5WKsyk7mGDo5cwiadSfpOs8VjWTtZPjnkslQqMv0evOIkvOWZvxOhCXwMJeqUtfVaAkxySY7ZDzr2ZZehHmk21Vh3gzwCnPp1ltuiPhmg/yNCygqd+OCoW8MJVDO0mEAbwv6IfTsFhsv6q6MsF6GgbzCUY0nuNGtd7PnWH6CEGeVLxOWkMOWbc49yvgZp2ilc8P68c5YM57VTrnzjCo3ycJHgc87Sp1m8+Cc+OxEnsxjHlGJptLVwodhrgzqlL2Uh76kJPSAs8j5UmnAneh/CevlDGYfTOtUKfhlEE4/mQhUJR6bQDn5zDwwa8TlGaLzQwIRaEYSpLRmerNT7FCzanpJTOGIBUYgC6vpNUMIxuhjMOhndp6G+V/SL3FISMNLYuno/AjoLi8ZUJaJfnm9L6CUaGHnhQpJwiUYSl4T/voVMok1Oa+c57GD02jiYVt1+tzocNwW+U94rCOeDWkMIAHjjvURjAI/ALbxAMFkIn2RzH1GgQc+c7qREUjlPhyTAtXzpuG2/20iMu6EiHMEgcSe3bhWlDJ/Rwf63Gw5KG4nLQ9U0d4zrEW+hDHThOxlRljbmEoMyJPNzv1ckAGfl0YaND19zwMAcDCyEgA6UGvzjdxRP6GUduIh1RCWGCJXwiEMdWnIOXmQ1ehhMhQfclmE0qaIPtS/OAIIWP0y08E8pG5VpTDnOsURpuTAdYmfzrIL1MCvs3mlfmycFW66YKH84Bs6jGpCQMc2thDXx9hb5qUwNDfuBvJC01hvzg3rnWwgKHhSQskMFQ4dWzpnRtOydvHhe0HRB+Yam11VOW2raT9Ig9dJyT1sezE0o7X+A04+Szh+hQHapKwYl0SoOOdGXfnkXXOc46TDGJIyNbG6Ha1PqsjilzjYTiUfEEoDJP4VG51pRTlC+3LeD/kSedHs3BlhXoFnh0iEGSS8hML2koK5qAFd4IgY0Z/qhaSq+hirYs8eqvuxY4ufQ4ppBjLfOz1ObSkzp8H8JQGD0JqhfSBt/irPCyJyX8q7XqbbnSTGaVZnLFNZdLqblc6msR55vTXJnbUVzzGBLfaB7b81BmQ/c5N4EIeJJCPLbnoVgO+YmtYCoosLvIsIebDmTY0xcY9nBnj8HatoJ5AXmOa3oDiR5Lx7poNmPYb6VfDib5hlSkCkOBoQaNBswwmIP1arAwO/n7OKam42XpHwxxMRhoLnB990+YOxUwKJb1+AIub3tDUOEZ98gQKArgo2dNKdDvWqPCMdMO8JMjd4BjHM7q9FelxwKe5aOx4ICUXg0thS0n7Re+uAFn2N5RaT2jwr2j4ti+mMuOs8CoSG2sKFqhKngGnu69NPqNS5o49ER2RUu31LdcaLCUjtwx86UyAQSYKRdfsa1orOAskxiI7aIY4iMLpfkiRYVRzjhY0gyX0ieJTBsKGErPajNcrVVUwioqZRQVlOMYqwcLEcd+QJpJznASwcVuiFtCnQllTbnG/k3oL629QN+UlI5Z4IpAcds0NFUlirY07bUQqgtnnu4oORsATIbHmfKPkgmzAi7gMEHwhY4UwHGqrT+g1eMkzTgpfeG+JV8asYhmldIhAyBrlzcdOL6bTSOFx824hAJ/caTwq1E2WhjHrDZ37DB5EY0ZrwPXH8zoSHorZ3j7QQ8SbP9wkMB+Ae7QPQhOLg/44qW+BwHPL8OHHiJhhwhWbxwiNNNohWmlGSJWQNCc7+6Dk56QC9oXBUy91mg3uE2KBrB5Al3rtkYnQMBrbhh4ANtZ8sjrS6QtheBwTPSiB0ZH4Cg9g4BHOv2qmUEMb5GW5ovUnc31Ko0Nhm9vU1SOnUDMvnlr5w/+S0E5dv4wc/Ok0i6lCu/gMsqW15qVB87dGV5CQVq4yuCeHaO9MNQdQ0pL6DVv7Je0vypdl+NDGvg3fEij0joRbBmtE6sa97NUnowyuD5M4ws3lPFJVHoTG3VsJQYD7OwrMbkfr/y2hLRRVzqiutXjDKHc+HabNt2lHnC8D0RPC+orwhCoVJskJ0I/PEmrGtOGRVnpVU3PvhLvyVKoEtOjjF9odLfn8S7tgHMz4A032yhWmQEvZWVGvDb7KHhbVY94ZUYcytEUxOh/fLkIbghzfDEd84lgWh76wi7ghVMKlwNnXWP/hq5FWPQwUIZqKP3YHDz3q8vhq930VetyNOgQxKtj7ys90rjUo/nd4jqodNUWQ7PZYNfmpG3kmGkQUMgWQlSdkWYmAqfUa2ENiyHsBs1+Xd+ZYCY3DBgutPRRDjywUyqtUZXepdfcaFSlzNpXt2btq81dZVC8Wo+iyYKi1JoASG7jWDk3t+srZkKg7VVlbgNZodj/T96bJUeOM02Ad5lnmYzYgftfbMzdAyQVjMyS1PV3f2PzxiqmkkwsgUDAF3UfVgZ1kAwZSVygsPzcV/X8XEVsrMhKKpdDUHC598P/KcKmvFN4PNwWwZ2eFFDECBDEHyyuveDnrJR05TvIFVioUrhSfOwwgiNfJ2uYKchHtu2zvjzKxuitj40cJ7xo7nIzqAySf+q26c6bV51IfQHaVDxzgegLc2bEP9ZLiHGlTgYZEFIjwNkOIT6AthR2LLYjRVjIks2BmBk71UczyZFKMwC7YsUAuBzpaKJdx3mTUpAEJa79fxllN4SnnPYfmBwirsp5Vfef5nb+Xz//zx7h29ttbanNh7Q97LCgouzE/DJ154BkDb/gPMYGFYsUD8DjkogJtjke+/Ds4L6Z1KUpFQtUIIBS4740G8AfQ75MWcRWFpcT8WcoLmf6KSyVUwGmIkAQ2oEQCtpXct5+jGW3K6IgHh9U4QrvfllwYu4U9DIF8Wg016Dm574gAJE4Bb1MGTusmNFk2EdZXFIOc99VtaFuOGq29mxsz63AoPaE2boiB8ZZXtwLIdSLRUFkNVHKkNpmI6P+K18T1I9mF56usbkrOQxLNC0voJadHl+mvh4mRlSqDgT5shPky9Lce9E3MyglOwm3TI2xQn49ooX7gqCU7ETJMlW2VolP4mcQ6ZwsV6ZO1CrxWc48j5EgPMNNThXBr0jZguhLcTKQRQzTIhh73pBpmzfCFX1aFbXYk2smmy7Qs1qGot2TRFfFPNJRnG6fXuYqO5mrLCWrF4N9BoHEaTll6hChkBgM9tn2YN/WnZOWJRyUdqCCIo9FD2TqWU7q2UY7JMmyMKPITjnaITBso31ulghCoY121GI02sew0Z5I2ECFAMU+jXYYpKuNjsNv6Z22UqZa0KtxP4OQ4uSFshSEILPRPvvyrRSEFKeckyn/smLpwjwDXJrTi8nUPYFLRPgFm7gCoBHpaM32t9gRpg2LTsrOjLAKuptJzPW9ENjGCgateetklMNI3NTLBGi5DlOVYnqOtXTIiAb0YgOrD1WRUKxkmaRzQGC/14zgnfhG2/nEEoEuWU2rsuOzAlsJcX3krXiSdWqv18hD2+H+QdjLJ22eeKyBUjTg5/o+ZFlJP2VuM0VUpsHN0xQ9mLmIpY2yzCBRApuvSUk6pm4yTMeG2RD8aVe5R+U2Sr+XyCgeFC2J0iLHIFIZBb1a7UUpSmI39+sttXBvH8jXdTK26jK89WqHrQ90IdLf6rQJuUgr5/9Ve3k2uv1fP/92nH8x97u0tf+PJ8Z9fizBxvEH/fwV/XwEs+z2qKk5lZ5sKj2IADiG/jp6V7BuOPGZLIGZFwvPCtYNp6eSl8TRQ3m1HOipZKenkimPgppbBUPCAdUCPZXs9FQyRU0qzicPTEL3BUGkdioomaImq4eKhrp56sxyBdtpSSExXeeJmudHN0rqHJrV4BjYtKvScYAUYBdrSlViTkFlMHVrNPDMglOYTBkhz9I2teL/UYyg4O/IeprcD4goW0wo/0C+z+kK2VmZrUO6SuvBgT0q3wCkO01DrCWafJj0i7sE0NApw29XPKNMhXNJ9bklwCLu9rrvdrnv4P/GeZdUd6w5BMzwilZPumKxwGvWZCc5k6kgU19g2QLJmewkZzIVZFD8b+0zNUdcDyRnspOcyZKcQcOip1ymE0jOZCc5k6kgs0box5YDyZnsJGcK5VAgjBB8gW4qqUhdQ7VaBg0fbZV+2t40YiHi5oOia5KVQBa4kAGUtLchCE1LyFyPNixOnKUcb2JKCcRZihNnKdSaeJHMluMZU4oTpygUO1hxUNJNyUclm9HLki8ysaUxtZMvlAaVglKRnw0E8S0lUKDHolk6cG+LSKgj+Zcr7uXeZJYlUF4oTnmhSHkhFl3STXEerUjU7Qgf2+rcTIpPJD6DdKhYBJqvld8RSQTp0KEWpSXVHiXtE3nUUBKJaLAGV9Wojg2ooNMhVzFuu1grwmmBakUn4arvQy19atmncm+mAFgYekpNJnAHaAqS3KYtHYEaB/IN/gKw8HBqUz8hTKQCEZOlQ/rr5WOJGbXWB47nGvT+fHM319zcN/fwtFw3q50+SVHmPE2cdgKSqo2uLfCP9Lro/NsOQPbBbjWma8p2/JFN1QLEB3XAFmOkkJoKdOk83shbgjGdopcnuY27KpXl8lZgxMfQ1pkrlVoYSapaGPVM0cmxq6DuCfdRUE9jylZ4YJ76LpEiJNlxehofizQz3F3EPuBvF7EPLT0mSXeNPkx+cEBD1bX5lh1FULISuJiIM3+peUtyQhO6tKv6LcJxJQOxULvpaxl8tRWXwcerOvfvq9uChZAYzX5AtbyUbHXpMnalvVCGCz73hXAiNHUZu+JNTTy76lYtL7K9azWqXy/2Kz6mvkGZe00rqvu+Ga5vpgkWRn2zPcjyENhsnTzjtE8EUa+qew/bzE2Gw7d0mw/SLK1MYdSQxQ6eSjUmPxVkNCOyRSQIW9vkSOcxez7Pa8uuWadxnv61c3bkjeLS55Z9zmZH25EI52k2TxCTSORGgbRwYKPCSSQPsFuqN9G+ZQpGPLiuls/WzvNBYEc1Y7A/Yee1s1cQotZUdz9W3el6hUnFDPks5XgmFcWR/Qv55SvGAZf03EsUR0gv5BdD9zH8gu+TOahA8cToF8dfLqScohfqhLmEex6hkazH9gs7DZ2MRlE1ijdzNcM3bBQ18eoHpgJlL7BKEDqUpw9Yju9aSF+ld/yj3KN7PwOSqw0eMP3iWLJFLFmUDJ6bH90UOhdSCPNAepLvjQBci5jd5XgDKl/rgP6FrwcVR7ktotzi5PnJlNTN89eLZzKE26uAgmJZqTyC1AsCYwDd0bAZ3BpN5u1a4TlNCai6xVF1C5m3qOVH3Td+3n2rRgD44gi+hXzdl9333EoUR/At5Ou+bPG1cZ+5XieG3CQWsTUSTrS5SO/jIfhNAK7UWbupVUOAMmXCU1cwKHHTv5kLJyQCrxjcXALmcHHM4UIi8FphRVo3vxlOVsgNK45oXPK7cJLjcBIEERzY9M/2o2DiKMuFDOS1IpqY7v10NI5wFjmic8nvgkl+FUyeIeRqgu+HEseZLvldKMnfDyV8lVVfRhJHtS5kTiMA9XYe4F/PPe0C6nTqKVA4VTZSNt5iA2yQ1etcoxlUDdJtgqcf+5x+46KXLEYyhTGkdYF8hB4qIE+YOvtxqrOf4uz5FGev4zQTOHHr6xTBP7G0Rz29BE7c+loGseHPIOAT2Y4icucVdWCWFo8KNHbVedmCDCdlxufkzJA6jKx1cDpXZYK1TP2Qh/s8/tcf8HAHllMEAuj/1r6SOkU/zfVg+lyL3VV+2/MGKkLjZs39t8sAQB/pMKjk8mPALQYkv0NHKNrx5WFBldk3e2Calry0LedJp5hbzKpK05KI6mUXpi1vylUsImyhQA2EanuP4xQZg6eIrAXwxcQ3mMSvrOs0NiCOZESH03aPkIB+nBwFQSsvUsM5OM79ynHqH5aL1LA4JArR6VU1S3pOMATMypGg8FtZlUTFD+0org3kOgv3AZX0D7x8pf3Pgcolf4b+Yu3Pkf+hq7Q/x4o82rwVu2lkill2/+cPqtbwpnU/Qb4Uz5KH5JF16YeCW6ApY1C5h/rMyS8KGw7ZiqlbbvAVCBbq+tZ2NEjW93nvRHcxjrgeHR+srfjctq+AweixVTQjdQBfGFXy7vC52Q/jxNjz+NSsBs4OP52H1jw7vJ0dfqqWncZD/JhiANwE1OFlhwBsSBUCgDpRDMBd9TwChCZtPW3tOQbY3+vsb3wOFK7PA/FD/iT4ltbPKw50cJfaPK/WvktbCF2l8yqfV8WuLEQcWz6V+13bi5U9RgAYRcaAXfNjiXaJVxYB7Yi3S4GgRXGCFqWoTnvEGVKgaFGcokUpSoKOOEUq30+REmXHghzJSWAUKlq8Ku2WbJHxKCeAad7YwK1zsCQrOIOsUUjboJkVCQIQ7KwmOL7s0B7Qo3QQxDUexTonsVGkooF6bT1n9/WCF5l1ZqPxD6bGMHkLqlJOUaOYaEaKjBd182eJmbX7Mytx2hrF9DOAWnuYRJRLXGP0KxlSM0JyFdVFEnRHNqquf5rLgcobpJBuZoM86meirkkowh5ndfd2Sru3gWhSb5NcJzrIKnzNQuqVenseZ293b51RnIZHkUzHq94eP+1tF/tNsgMFT8DK3bfzJhEp9J0kUjHZIlw/C5IWWNmgB6hVzhQIx2fGfgcEQKz3BKraeVmvy6ZL/5ouElGUg1ryQDT6RlhfKLs8uW51bSwg1haWwcEsUIWx2OtCLgwvqlOgBK+e/tk8yqw4SZBSFdVin9USaIIUpwlSTPYjNlotPxAFSQftVJ9RzamClPouqtX/IKo52ZBCPY9XI7FuGOkpcktlOzv3O4/7kGQIKTykU7t7HKknbQbY0er8g7gkAjfV+/CKBXfAv6gLkKYlQv/HR4CsvwmQ7MJngHQCI6W+C5D1nwZIp0ZS6rsAWf/DAOlkTEp9FyDrTwOkkyYp9V2ArP9ZgHRSJqW+C5D1/zpAOsmS0hQgc1yoDzRLitMsKU0hMMepZ/tJgAQAKwiQTq6ktHcBsv0HAdJpmBQKi7wAhZRLw+SLbMWlViGWQV3c2TRJ5e6+ZhTsn7zokalScaImpb3BI+nmyc/x9US9SduxCaA0e35TDI6Kh04TpTRFO4SyZwxu7RcxmKPkGYOdlkppQuak+Id32yuXrf6PUcIWAM/dlHLnVhIoGy+fCI6S3ABDzSckWDlNk8EXcaRv7H9j1wODlA0FBVRsHmu75wpof2yd7UolZ1Vg8tnri6FJXDVxIBBwhhDnReuErib1oDGS59j/J4AijlsX4RF5w6Z4PnkcgnIqzBof7jAXoaywJ0UGhr3zsl6X7bokPwJdRN6F7yC3GpjATExuKO0JfSpOHqaYAgwqvdE3zB+EHvDbotDjgndb70LP+g9Cj4vnFHV5tcT244dLrJOIKV3RvIQJVf+5QJW1+3MyO2mZYtIy8dpu0jKoyBq7FNnTCaFSrgm1b+Wa8PlAGwNvNyzXRC2Iy2jhQM44Psmej1WczEmRzAl6Oxp//YkWLU77okj7gm7k0TfUn4zgePF00hCF6gSvRnBv//4IdnIJpUvmCqi/YIz134yxeMFwigCljzdJex//MGl3zPZCHvXLfpj/XdLuCN6FfOCXEWX9NKK4eEUO6quJrZv/RdLuqLFF7NcXSftI/8dJu+OBliFt0JjdVAIiaHFE0DIscsVVjfF98d90lLiq4aiQhczGV+OdN//luOOolkVsyhfj/KJafnOcO7pjGYpqNazVjl9FtbgU4WiShaxH/EV0cj326SE9K07R1URJxy5uaKVpj+aewf9hprLT054eo9VFOnEpR6i0Uk6i5RFJqpxKKsKnboUAk1Kp1FN7oaWyTKsrCwPL1PdyafZaKr9XUDFYHQF2PFWFscLYqirKMzJjcDY9FPhKSwWlEifZxwoVVFjZ1weZURfA+z8S7Jv0R+kg5e6holIcIbSQ30lJrqgH1v9lD1ztzgGUR/r7PSBa9nrVF1EP9LN/xhsNG5YO/9ADJe4Bt8yRIAu/1qgH5jYw59ElURdpC3NtnRRlHQcbVX2CE3fhrbMBhtfuky2bsQy8kbfHJM1stAvsJ3h41A0enqcWytpuhPSbUkekbXBzYYfX9iVJtplNNM3TZnZajMhcaqu8IxGrhTGGcAJRqoCAaBmH62klwBR+eJWsPEA3eJhvn+vn3XHenefVss8ZADxtjLFaVO5heGH1JhzorTfx5+mgrIM3oy+O3VxIVq4rDmhze6QDNfxFZa0d64vKGkAVl7CX+jL3H4qriQsy9kwD9tf2OznU+Pq9shclnwhmsY62aWaKIJZiZptm/K9mgmpoK4mC1bVFwSI5L+4sTZfNuoWkGGlseIyW44wXUsChGhR2S3ZRrpX696Lcv7GmsBhIwUCuu9y7XhFtlR3RmFgCUACCp60z651SF/daO8rdQ1sPQ5tj2hdS1ZFgBKoxupmNi8FZsUkSW1WkpIuXctJRfkBDYZ2rEOBCPEaeBr/vl8Lj3+Km2MCfJ4Q+N5MnATvapsBaewqA+TMEMlK/NLA1K3EeAM7Ac+I1X4XJom5btzSSqChR+0w4nWJAmaodxE41JZAMKE4yoEzlvLFVTbnI97dvcEnvVNLbwqR3/ibphZB4AGR2RP5CXn47epj08uYTPDs3eLYh0n7C3NDgsR+DYmvk1kN0tNPGOx0A8gTYUScKUKbqkC2u8QSqAMWpApSpXXZsV7Pvfm+31mIyg2Nyl3W89gexm5JoNionjcXoWwfgJNYfTFIJ43KCDbVp4X778JwexwMvSzvqFh4arN/UGVtMYHD88UI6eONkfpSA1unIQQla0utqu7vGhF4xxVHMy9LuOnbuKQHHvDiOeVma2y2kd6zfnGv30CigOG56Ifu55ZjJuq49MpCeLFbtYyXYI/MVyOdW0gI/WhwmIW4DwfnZyvhomdYMrX00ltTAhsuUCn10nQs2S8Gmhy4GJaBiF0fFLks1vh5Wt9fPaRfpgPRe1KwuQpCR3UooG6KbV3UpbwH7fXDIbA909UvmXoLy8NpDc7KiZK3oZe6LI4OXpWDS42AVsMGLY4NXI3z3yCJEN3/ciqF9Q3VE70redkfIgfDvcg9OUf32hOhDHGN8VmZD9LMJHpfc4xQO+ox6bd+1GLlXG7JckKw0qtzU9dFweMDSLBLSfdX2FXkNwy/21THM66GQ0sOluh7PkFIdDbweCikjWqp186e9NsKlujr6eCW/GUaugf6Bbj56rVjR/ew9/Dl7zz+ruWcpRMS+PTWwnK+OCFwPhYgRMbN088fNFFKzqmO51kNRYIQpwL7rlyZQHCYJGI2W0cmfaFVH26yHpv8IMbw14G1Wx9usSdN/hLXpfddPw0K8V9Z7kiCTIFYaNYyjeVbSMPFnwZJUL5onnMxOMykNHOw4lI9AQldPHkTjo06DDN0/2kUAkTqPGR4/14vyiUeedl3KM7GGKquky4WySmy8ISc6SPlOB71zgtdwkz9p8s9wTAbeptWxNmvS3J81nIPpN5N/e+/4J7vJbyTMGQ833qXgZNn8JsTSLFDKlXd27X3ZZMMiZyJhibwRGG9HQdSxNmtSdFgvurP/8GV6TRbso9fy7+LiTFKcWWEyo7v0YNjyDl884vQOVM3IWzSW72CefWoQfyBSHRu0JgWVmMaquz97B7VI4yK738a/g4tHSfEoZMLqpqzdWzAy9QrQcoLZseLL1NLqw6Bji9asMBWb6eguf/rqwXO1Daht3d7gxXMdybQajzSmqeru6+fefi+bHHYqr57rIpn4pEfMbtXdnz03HSvOohy3tJL0CdJLFL7zdQ5J+RIWICES1bMMIe3Zw/s/V8clrVkhboV7rhq45lbHAK1G8lzRnks3fxgj0xHuuaqjgNYs+4gZ4dh087nIXN6I311u/Eu4eEQiWgJQLWy/J1arOupaJWMppSOOJvkHWK10hKaJ1XGial4v3TVr/oqzPb3DqCuImqsOiMoNlsltPpXHWdUAcklUw/zIOx23qopblY5IalY3fzx2QtvE6ihZlYSp1lZUB9NNctPquD24mUGSToHhqdc6SdIIaz3pyj/XxRPyoFKKyWQ1MCeujjlVRY5KMZms/sCdOKWYTFYdm6qS5NT6i7aqUc1QAI9JM7Jq1cOrVvgDyn11DKsqElU6Is69bv54xITUrurIVpWcpgQh9rDdv1gQ3kpgPJsAK4PtANmWBAn3sN1daCHPCX8XxbditdpM90lUZscniLtIJ9pnM89XVIceP8zFHzGkKKoU/bBnFbY6ZlMVeQmrUNQn6xd9ksLyUHUkpioSE+S4o1fX3b2VynTEwTNQpWMW0ngC3tUnSAdwlJQSsUb1MSAc/6mK4ZRiBpXdfTz8euRgl5H6/Z2HuzgiE+QUk6/s7puHh4/E5Qrb3fGcqnhOEDsIn17uChRX8ZtmD4BmyR2KO4G9FUlW/t6vw6sYSF8dmamKzAR/gfBt6i/bIscR3TGaqkhLKeaJ2N3n03OxqtoPx6ALSnJUTjHFxO7+5qe3+Ke7ACViEtb/8OnjnoHp6e38xTbPd5HBHq9LPr5xBIxwo+8ITlUcphTbCdjdf/giceHDUZiqWEopxt3b3R2z8SKN2RJepMsBKMFD4bP5o5Lq2ElV7KRU4jHfjm88CCF2+kPs6khMVTSlFOOwdTc856qfJkApcwkU33U6qFYvNBwtdk6IyxaZIFfHcKpNcS/Wv7e7f/jdI2xgx1SqIiOlGAdqd//woBU/yEUvMY144BM9qP75QTUeMo5vVMU3SvXFkHmeWldHHKryWQaKJljn2y9OrWFAFa03jhBTRYhJNc6aZdZ8ZzmQl3SyHERCOrPSAhkLViIgw9ErpTEOkYDq50D6BlfM8ZlpNcf6sF3O63Lp0r+4C0xi2sAeN3zxc29HW3Y5do47upeUplrtzeHyWnmGDEkSHhxzBeVPqHRFhGAhIRQJ/rvnZdGlf1sXvUiZATggAKzoJnFC2wsBYq9JKvPmLEv9aSprlmJAobmBQskcR2EEJaDQ3Jq1p5FfLRtxV041lFI34i6PjckSoIjCtKeHkT639ucIgoN6DH6PQAuU2WQ6TQdjlFbo/9QAsSOiVFdUQ4Hyk2qY/L9iVzMv+1uiN/SfBDzYpfVZYrPTRvk5MV0sJ5eowarxCc/STW/hZ2jUdFn3nY59wmkBAl5MhfNu3VflDBdb94E+IMTo1F6+0GYo9uv7lUufPHinwR7k1yf0HAKbDIzxxnRSxGlUI3EOWNSWhuz3mtBMfYTOfYRGVGGnNO8pZ0qY/MOyrzoWVyW5quUQv6ibVIRPEhHa86Bv+CJIC7KITEaZnH0ridVscrbJeoQnycTiZ+sRSswMSs2bhtDaIAoACcWvpEkCvc/o5iCVsXGqjM0NXmWTS1hobV2h0wzs2Ii7RPPlsf0BpSt0moEdG0JcUevgT0RdhxpnmD1Zhm+Fh+n7qtirNZY8dUVtYh66y058O8nCgkkgR9rNUPDaIjBLCYNlCvboUX2sdUy4Sg5ay6EjZj1N1qFW+WUaEZJxOmBm+rOswArznFjftsJcyQwD6LYp4SVazRK5WOcfPTF/Ncdu04j9M9gr2wmzUQkK04jvg/+Kp1HP0TSa8TRyuRO5fNDaCnui3Ozut839MvFqI5LUy95ejkNoDko/QeVq+9yXw/zdmxz0tkx6N3noztMzA05KnWuLEjegMue2LKlm567oB+sF02rr/Ytl/WVUvyWxYnv631vRT06Pj0y2MqDfpqLWrFt5Hly2TX0TnmwQIaFPUbGPF8ReTVyN82qeV8uueCJFmezI6Z5gFX3QZiRmekqap942sToOZyXDEm4Z4Tg4/cvbPiarNhMTDdklbqd04jBIfwHTiR5KNg+RHGkeTlOghqey8ovd2dCq09tTX5WdR0FpTbq1J53QsPW0SOSkqztU4tE27egEPc/PLftc2yKCrW6bJ+AvOhaMJu0CWnrWfTUPc6g2h8S2NaZpr3qQK4MP2hzMBGazfjurP6N0bNbahR4JmS21N5/L0TCJbb9tU4ByPnM5Nf72Af5+UsdGH9v9t6S/nufdsjWisgsWKAIW0EtMmJXB1TPTY6sDVG+2A/DOYKuT+XGMMJWjkdkzlXMU3UrmrFTDHzKE9aToimjBVrcUDsm6MuhiBw2H5Qv4uWr0vt0fDssXcjLiQ+0G+8YkMC+yunbztz3k587lGOHU/BuOX3jF1j9R3+UUmSxpq0zqc8s+l08Zfhv7GPxN4o39g6QVbm2aInTqe6SfVg+Z9DqxWPjyGunUjO/2577N3eaQ/GHQW8ORfvqVA8pv3j9r27mfWy+u/y3bam9LC1ZVLfZ9WJA5OSfV9B6RvQpxv/K5X8vnfu1k1ZUTaF9Pb9Z22ipDasMMPU4GRDkX93b6KuOEl7qHtIBmA4LxmbmhwQCxxR9JaJNhcvvA1B6kyzRmUnn3Av7LUPWDB9NLd60TmBEm2XUkf5DnSNuV3Gicp0Vbx4u0/U2uA0JF1w4GH/2R9wYOXLBt+MsMh4vNoDbG4NbuhKhFJH+MeY1Cl4v733Re5Xd0hkTLd9IZrOVpoEmXKDIbEp1SHsyG6gjplRRyHBiN9nl0d7DLm4+N5Gvr9zDfBeX1Xbr7F9PYY28QbwktftpnxZju5w6xd0to+94gsr6EtFfJDUy1uvhA5UW2m8iE5iBMR5D39hfbR7eRJze+gc/Lp35t/3E4nlWfF81K+46zH5bpD9P3azOw7sQrEMr+Td6V1GWxd2Jp4bNxR85+obsVThqxUEmoDjuOsfmh7ST1Wnf0mGtFzXpxrazpOZ3Zqw+uVXUyBJVCAKjqRfHndOi+ebGrC3KJjWig+HwzopEYLorX37NhP9ngDKzqOENXvnNh/wfuNOwfbLTJkiOorMiTEfGTv5FXo6FWDFUtWphM1kK3z3ob8/y/7bOOdEl+7I22My98apI0nyatzrV3n5w5MzJYr063oUq3Ib2AaQe6DdXpNlQpM6QRV1pPC29a9phzloZANV9oDrdBIy6aLiTqi2WloaYAjZRe3o80IqZ6lNxtYBhoFRrOnNLOPue2aVhKwC5n8RnnTFl6y4i2XTqQmXQ4mX5i/56pMdA5mDpMzJKUM6r5cNM2h3briE+4zNsmInHi2SUodpNziyU4+2y/PjCuDzBnxqSXwrw+S7Uuu7yeNvN1WeynpERqpv2vPc33ntspvtPAqIEdeHUaFVUyFEiQgqOJEZxtOBmKKhkKzKPoC/p2sko7eJf1tOzjkjkxicgVheIKhSAwxOTZe8ybd1+jMTuggY0i+CDXLsy2NG5ufkmQtXL4vYfTs6iy/Y49RnXzifemDjwsq06AnFyroGKBl8Jh02PuutRv6IwDnw5A0qeMxU+OheYMITlOvaFSS4Bth7NZ/4tX/Iufv++joyb+CeRtSgA5PxHATrWgTh2/vkAhzwvLf1glA4PhdHKZNLvu9i4U3p/anvb9BsxAcDxFe5cE6vlAHdG9lyPg16nT2hfw3HmB/i9RQ70EVka9BPTx7CVI5sRbiOxpb/HgdVbHN69T0XyFRKeZv90vZ2988MsiOKbjXFcZmCdEz2Aw8i6L0cNqThQI2B1kJqyj3XpGqLVj0rG48wju7CL/Li6oiWgMM+ioGYKg5njGVTzjFPrL6CZFEku7drLn2SFnNouV+VyYGYMg/VO0tcZP5vxD5BUq56CbBo8XaO6+eNz1wHE6PnOdb4R26zyxcTT+41K25ClfuMIinzRAKRZf2QKkZZpGPUsEEshSiDsyTYT1GpWM8NpcfBA2sQQfxBY+XtgFS1KR8belfR7Dz5NLcLeY/igY6WjJSuN3tdXk8QwMRT+zDxiO6lxFdUZtMhyXO0juctwoF3FCXWR226iN9N0vRE6gIBChpBxVuooMnWMjhDoDApOjPlexm/MRTuu1tzeoWNM25ti/JdmRdu7mI4j6odZKLJRcAEDj5+9ERbISP4Kjo34gRYEDBw7GoYNSP2BH2D7nMczbldZCmae83Xe7o09Xspr5pQ8Ws+4JaoG4jpI4k8JFBEB5dLFjSFexoFE/iBo4sNiujv9cxX9GNSf8huIn/KnM+gU1cM18CIZ/dkjfcRcFkNM132+zPB/xLHfs6krSc8wBr+sSzL2HVL3VanorbHusEL9PW3ieyRdFj+pFc/Erv6NbVzGqc2jwUNcvUMBogijlcFzqumQyC2/Jz778g/v/E5ENN/vdft16TFVHt66iW0O9JPp1AaXA0aarmNE5BuSu+eOFQ6iAnv6whNyHFPKcaEi5qESONE7jIpbLOlM4VC5xcC4aIpEJvVtAPgy3YBwEiiKiGrtKoiD0kvkb1wuQYn0e7WjajezpF2tZu0y7/7O1rDl6dxODGxv/YG3R3Z+sLeeCsnvxkfA1x/hu4nTnFOKzWuAE3hxPu4mnnVOI69PdQnuldju1/6KfUPfQLXuKo4bcCSUh+jB100/QMGVZi0cophdFVkftyb9pcW+KUISteCB42Y4rCjZiQQr9tnSIXboFoWlbxVGL6gpYIlmFYfmLs42Otex/ku0Sa/go+smSd4yPJdjXMO5k/WzDv3p1r25RM2JqteM3UTOF3Inm6OWNZHF2wJNBops7KR/b/ntvhw5zwzw3UXluf2V6XcCZrUuXBql5zmDkwKY5ZQK4Zyv+5bp7OUXbGD7ejme4bY6C3kQyzzEEvB3zLwxeRgpdsTYKPPJtGFPCYvplszkSezvWayaPbmYShpZqZCeftzP6FhJZVCxLdko8AL+QMJ4NYVgOcoebTSazGCNIh+PZfAtr+ciL4MHTe3ChLNm3Y5h+/Ej7x+tKXsz1oxOehrO8g1kEzMFYgcTXraqnZs4Rvfbi2ntwiFA0LWffWG4dIJ/+1US/0fX5nYz7Ns+pssdXaacP3+TvaSzbdiq56ErJb+HPqGRQL8qWHEw8NQvanuCoUyTo0eGg08dkR/9vYvjn0F5AN3862XMNJ7sj/zey8PEby/icR3cPPnf/TF7zli1+ZLFcSgFn67ZILvY+hN6STQIEMnR1E8oVbQQ4v4+CThWgSRUgx2SBFsgCNCcL0CQLAJhY1LQb19Ly2guu/a658Sz0xTt4VjO1AcIBhE7Ta9chS+NBnVULV7bNzgAbIRcEuSM1/54u3ktEAEfs4S/dBQRsr9jIQCEInIaaME/L1LSZWiydAZZiLHaJmkyh7C/h/RSOzmVEwtHNiQo0iQrkGGCvuwKG7rOalvYRjQkgo1x5NieD0LrlWwIdTkyjaY3JN965VcGJLVfPXK05cZnilnVrhlQIcoyl193XgHS989rvDIQXXxZGFHzXypzb1K/Hflc2AOADXUcMhBzJSjLXFsnyNydc0CRckGucZaULjr7KVZkTSYuEmEzSvPSPy6makFkZw5/kGvJ1mhMvaBIvyLEEn919VNnZajmdTllqNIQRZPomFK5Wgyogm4peWLupKjcKtV3/u7hq4sWB0N+X6brMuvQ/x60UEkXILeJFtFMTIa3b5ldzHRDiRWIoF1S9/GBLckIppWlW+8VlPbOb1q7LHiY6TkOhSUMBZ/JRq1/KB7dvcKFdagi5RQVJ3ZRXyw58N3+z85Dk7MfrtIQBMGVrFGa+5yFJ594Ky2MHgoW9bHUf7lDaCrvIqSm0bH6TUcGgXWoKX0rSN6UO5iLsFzK+qUKTSfluPo1wAgtNAgsIm4Ealt393qNLNTbaqye78J8t/I9wX3h5c3/jyddcf/FoF9wlzRC7AujmU2Lg2rlnw7llI+txyPpdPN4lR0ZPzUk0tGzmavH0DPJ7p9DQpMGANgkbckYL/pul6rnyX6s8S9KfAzYrIkGkLwt/b+Hy5AQeGmUWXlS3W44PxkTeg1Y4AR67yA0tnz0S/FNdGCzmsBOvLoFRbnOqDE1WuITbRd+QTNUml/6ucHU706BQLIpUUthBHZnK8CBLARPUPvMYX+pWfUZ1q+Z0HJp0HIgQDGZ1+aJxd1ZbBM0spzQm+I9KZUGM0MvSW/oSSAISPOBFNqcK0cxPd0QlQ938abbfwzPY5sQhmsQh4jNYu4keO3WIsKLzFwPmwFu9fJA+gkF/rhJ7kb+WhPOM/FoRUh75XMyBg7Jle9TrsoXLg1OVaFKVQPkr7E5iqTl+2llDS3UrFl7HphhM+1hmzH2CmqmaFvShC5rUf3g1ay+Bia+CbSyBUkaeUhOAdFBPGWDycwb7B7sAafa8sVyb7kqhtH092ekAn0hKu15HPOo6MncIvOUxIlIcZjDDvgCbf2zmKvNLnfEkFB1xioMrLvYMejydT48yqNOxaFSleKFyqZtPeT1OQ07IrZioudf97sVJXjSpWtSobN1uXr4378Cta8neIWruFLi8z/dZ47HiYq20LTCtogHLu81W07OADhVBIXQa2v7YQ5dpmoYu2QYaupBGTYB9conF5QhXWyeL0SR8kWec299tga/c/jS/1fCYzWBTBEIOwTkb0VLK7ZlZMISo6cChmJRyJ9YmU8atMKcgoKYzoq0UxgInrdFqflP3OV2GS94tO+otnAv2BzTFHwI7gFpRad1JbTRJbeSVP2qH/Lx7nTNz/cIgJtLkvqsPKMXnisgvb7aPX3Zsg8t6bv8Jvnhu65wQR5PURo7F0lp9Ih6aE9NoksvIK04ALn9g7oWXDl/O0sqVV13plJzBEoMMqmrD2NJUYeOyD6uYBA+8XQ0gDH41ygbHdRanwtGoi/FyxFzKQMtOBA4rnpbDwmZvRrEZR9Zk6ITJcjJsi02MOLxRJX7czgFS3ftzsN4qkTMjW+mwkGfC0mHtj2HvFgHJdWDtDTKI+gsBV7RplEE48Y4meY4S65/progA/Qplly4ZcyuUz7MWomldTX2/eoY3KTsqpmEfjoNE/14uxEutoxxxVb+un79X2nuZ6A1fvpaL/NL2KDGOowW+xM1JejRJepQQx6Gb/we7mcZlr4z7dqYQY/GcX070o1Gb41Vi1GI82bvtTKsBxq85BZAmjY8S4zlaC+rETtqjSbyjxHgO3X2cC51a8Od5kHYN0CMUPg3HyrczItQ+/bFmOVZ4HuQkQVp7Y3mpm7sES/DrxkxHR9++/moqO5PwdyUiX4/AsboXW7Vh6HIdgVPf+3ns7dRIGkVCcHhesHgl9/JXunyHYL6Do4g3d7QbMOUCBHbWmTzkrzmhkiahkhLiUnTzh0G0xLiU5oRGWntjmtlufr9gcHDbewiSILiCiirr8etcRKRwBVybojJI+2K2ESjgFXll2xFXoLndnDBGk/YF+gBT2U2fr5a9xfxGM3tqwBbMfbnTemhy7C2x7F3rQTXUCQ40We+WFC9cPb/EjK+tizzGVQW98tyrsF1Oa7BbQbTaPvgGES+y8PQQ8eaI+Y0E7RcQ8dYv6cgvw5JU9GYQcWgaCxy7dr6RD3/i5njgTW69JZbp0919/n9OUNrPkZtA7Q4e+J+gXKV1lRn1Rgpo0gCoC3cbEbfB3Y0q444s3UjjTTpyf0zb/gtgREmhDGlzfOHW3+BmW++/m7aOINu6BaV4IesjnLfKW9bcvYwjKG7Em7e1bI4L2roSulibUHeJa5jbk7rb9KUb3x5TaMQ49jnaY5PVbonVCFtfd3lyL1R6od8vmyONKRZ0bqZGRXqAjw2bIwE2WfOWF3CSEeRnjsvW5JpbXsBJxrbRAweJIWPZsCQSYSMQWFJr++R58zlxHmoqFyfSBAluYundTtaFSOh9GA5BgYbVJnBt2+d6FAEcn6uNd3vocWVsO2UOgTA6ilZVlgGx8kWB3Rg3HIxedHQ/TBxDrIkhhnEdTPLxixJpeQGIcOSmJnIT5iq+wpVqePPU79J0uKN6nzv4E4ypxmB1+8RDqDFW8SuB40s18aVKLN3YAsJUc4SpJsIUpOPDb+i3U88N4npmX2pXnHfrJzAE12whXRV6enUwt60orEIJIqDCNEeHaqQpvRyCFx3qfgTF9wI+KBC31gtWRLVtLmsv2A8fgR1FqokiVWLAyG8YUmiEcOi50CgSVIn1KNuNInUrit606qF5MsUxLESDPDRBm2NGNXGfMNqjJ96YUS+cwkqpAZ+iOaJTE5UJG9HwMVvAu2+LUa5tRHhCK0Q/cUJyB6jM6HkuoIm1BHvVQIy53ThN95/15TFD8s/+OS5Iib9UXqBiZgmfQ0WcVfiY0HO8OWpSEzWpxKKTdtePi0v//Kqal9hruzkmUxOTCYKB4fOaL1ePm42XbcxGCSdjgtxGVJd2FKUmFhIE8SoSS4dLuzhKX8CZjAPc+12wSzJNBBleUrnXRLH/LDyorgTLU/QHtbiEiut4GOg2R0tqYh6VWOiyzeCs2hGNmohG5QXEZz6wqBtVFa7Aibt4EMxvBQdGv2KiCtja4aozDo4vRYg6wiKEIyY10oxAs4uWx8vC8Q+BOgjKfK3+SRVfsvgefgTNUZyaKE4QvgkC9Ulx+kmgrjFC2hGTmohJaMYgvKx0T9Gl8I58fDBjRdLMH0pxeYhvRBHAsZWa2EolViZtAVupObZSE1sJBZiorco/LiPqkKevez0xwEQU6pw+i4iOvNRIIXoFSbnYS4S+0Q4bxPtLLPpEw2jThRQ0FQh26YgEorIR8s0Rl5qISyU2LG0ryLscA6mJZFRaPMHXyVSHRIAddLzBT17NfuIl76cncgjPt0MTbAJ1PHI7PsHunMcn/t1deFvvcrJ15WTfLdmdhbp79rgLAp1EmlY9VsmRpZrIUiUGta3fJGftxZx3gY/EI5ZzAugEb177UMfZ5uacdry3U8b9af3w+VgRHdGpi8v04mhRd6/zEx+BpUPMTT73KD1/SZHnSdbS6eLjXKM7FlMXi6mE1q39eJbjuiMhdZGQSgjx083vkN6YbKSafkN6KwTHPcBD3ZGduuhMcdWnH2eOB+L/EyojXUdjmLH58R+YwSyvU2qNGj2QPRzGG5lWXocAxSIloVCpZZYTLUuuUfFmst3Rnzo5RS+q7v2I0YxPlQk1c817g/VYmbvjLnVxlygo9Cw+95O89AV7+kATCZGyoO5C4xno598qq+J313IDmF7Nxt41VAGldIQ7KvK38aXX7ihQXQ6bJTR/7YHBZnc0pS6aUulRjVI3f8QNPsf5H7jBFFqOxvRwrzffjYubCyczezx6ffcQJuYEd0du6nLoxElrOEJ+YUNTehjIu2MKdZGBUHUL4ED9RhW6MS/HMA8U/bymtuYhNVw/j40jK3SLfQCCuqP7dLJwXhCT+83t88u2m63dcDQXM5O74/Z0cmlWDf2Ye3omjd2RbzqpNKum+AvK7cjkCRt8KbdzOzrhgR3+LDo6uQR3rrOTRWoAAUJF+fRjKjv6TyfN5sUpSk9nCPzjKcouee/zFP9YFwHTm8Na3fzfOaztju3TZRI6Qn/0nvqX7Ptp2kfO55i70ZCZa5riLRfxLy0/XsEFUJJhYMZYGXTcK1ynIM04CqtHuxJrOokiHk0gnUE6w2EIB70kdFAFw1nPyeuCJ/kxEPsLdn/9ouUgpp/8LKnKlaRIAt2WVIvR6SjHS5LW0uENxkAZZQO6oHodALq64+l0El0WHhb12m8i6shhRHWMmp7fcPB7vk5+f3Iu1h0fppPdUmeoPdDzC4NktvGoF9x2ZiZORHYWeUv657ogSm7Ki2P0nvP/8w+P0bvjvnQyUl4N/Bv3pV8lPkmdj3GLUjpWXV4+oTu+S8/19aG9bjabwmfrXrP6pgKVusF1FktnD0fc7uguXYSWEhuB9/zcWnfHWukippTY41t3Y7zOvWaWSX6GdP1VM9PCs4oBonBxErrvFbMRVsy6I7T0/Ea8SDfP6fhcd/B+cv8SImrgVIKT6PDU2e6IMJ08kxf7935zKuUxFcVD+hVCvxE59R41pVvp4Yyhm+F7eJ2D7ugvXQwXkAaCVDn/KmzFiaBjwPRyvKY+6+aJGNz76LOAqfNnFCvvQMG9AT8LmPtMmlBGnUlXj1bvjlfTyV5Z0CUJsq4S7K0d3aUXhayQw6abLycGYwqQkNdx7gVou6rKS+F0fnThIEE/OWfGIo3jsTd1JJhe3u2ry5YAhRCPsRkuFgP32Ydpy1DhctMZmBuVY93oDEySYM6iJAlLiJIkuLwoSYIUq5KkimN6JkkgOySoyJLt4H+LC6NkqOAgoByfZfmhtKGDX3ynL1qD8vqjfozMJQkKVqjP4Mo/10VRklLWi0TtF/6q6Do6Hfrnuthb3qD5+s1dde6SAc1BsFFa56J2+3YXMY3hcryYAc9zle7YJV0EkjJChVrd5agGpsTMgQTabh/UJt9ys1SFgW5GlpIGMeeDd6qUh7tEZztQxMO+QqKzR90UspFMbBZWSVafQjGF2vs5FeNPUPZZUvStm8YsiqsSM4cfCchCkGLWsQLfE4UuiHFMis1mzo9FOWr+Xz7Oq7rvcq+uq2F3uZnNQjUUWi4kQupnui7zdVmuy3pdyszkMVVcuC+28Y9MpPtFnLl9gQvbItOUGa/79QnZ6Y700kVr4VFM9A3pnsGfxRi61YzxhbD4VuwCdkhYIr4wFssMGYvd0Vo6iSUoKURZZ833pOEMJGfSoB0YxDbOVIFvMwDR8w92UZkskVdJw0Vg4blrtuPG89xVbZSNDLHK7SAWzxfyWZucXHaGQAcGFTQfsKDuSCtdpJUyw7pzrb9IFmL12u64Lp0sklfJwkV1+QrNOBtfPmOACpV1xM9zEVZElBJr1vYalCAdRaQbRWSF0DbdZRoAkwTiOfYK263NmN4zHwR3n6p/Ne0SLO3DmCjDEUr9DMOmAXOXT0i6atSzTlhWkSSGf2UXtknqiCULdS9aVcTifOyOHUGkG0FkhXGn/ibNXCFqtDsKSG9vlIl08zWY4hLKY/OvEz2GYxs19fTose4YJN0YJCvearUgoXSUji7WRompYrr7pYoVnx5HjC9uU0n0OrcQ+ln4vyFLxzK/nF6u8PSyO0JIb+8CWSuvUhQkQUGK4sgi3cgiK4xD7TdxaMWbFkcC6eRVjBSO4naGoblJa6bKSovu6/RxkHFyZAtM9fC7dcfe6GRONKxdT6ck3WQCjg0QDUk223J7La7VzCxje5ZgGNDrAm1PwwMcZvPkp1hFA5mRtCVOI5/DnBtIh2KmhsoKfTmKyfiDTmqGDThUkaHGttOgkxu9ZOp2rcr0dKNdw9qmivrcss8hDoIG0LeFDEpsk+5sOCWjADbMgyAHX+hR16BdI/fSle28pjF3w1/IWaMf25oBxyayZliUHSB1fuDYqx7HTjort//JAye647R0Uk0aIflBT21yOI+RzV+JPUXlom/5KmHJf2urlFXOE1/bcmcZLIy/7q9kdqRN56lJhZzJqTfMUoP2SuwPWK2gZQoL1407v4xum+d/LfNoCi2XZNaB29YxQGEl8EPxPb5f3NJGdk4HRTXql/mv9sv/TG+gPdT0W88cS4La86Mf1W7GvXHksDdK2BsuGWiSXAldyPrlnczUyBxBz6w3MmFKn7tXZlUUwwbvR96jf8+MqRaZJq3d0ihBHduCSVLZB5iV8lhGXnDM8645jkbOS1JqrFSG4PeVdDb+4mWNnJe6Y4p1krt6Cp0m+2WhjAF7c2Bqpd4smLbz0mm4pOZf64vzUpUK679ovcQ8DUyJQmx/qR+V4b5CEZ12MKjtW8egUMYKU6KE0LZUCh2XsryuIDmrJsf2IlX2w8NxqTv+XCcbDvzzsMnTbcDzDOM0mszrF65jf3Ct/nsjvWik53wf6ZR64ViW2glzNGquwe2ScAZszpKZiHUaJOP4JjQby2lFAz20GOuOc9i7iDUvBvpWYDuDfe/rCvZq7VH+YdT/yyFegxmVv1sUVzsD45iT2Rhq7ytN7WJDGPlnIsC6ExGHGM8KFE7n4hifzQLxa4gfkclhd/TJ3rUBCB2mdfOLn22nzof52crdM5sAaK/rZmjLH7HKTx1t/657rXl5otDXGVRwjjxF91J4yZ8HdIZZCqJcMr2ka1+xf20+b+/wQlt5LgwP/9ruOKOdFM1eXgz00zv43A7N7V+btnfwYW4TUI5TW6O4X+1kX22dd1uPbWs4zSoa2DS1dT3bGjFMY577gHrGb7Z1Pn1T03atPU1r8+mpjo9t8cc94k3UKtP6vJPNAUsvSd7Bm7ALcwx5olLtyto87+HNJ2bKGLFiZ23emOnzGOlxUOxosJ3s1F56mFFensHh+H7t1/yzUZ15rFH//vgmRJIeypW75cn0/BzVByVEcQapnsBJFD20B0BZZbwd6V2K/vPrSE/m3+xb3e2ESdcFwCkc6f22kD4X0P+ZdfO2Wpa1V0up76G6Uin21U/5PSo3FVsuqcjKU47aX6eKFLd7rptMdoJ1021iyVHuxA0FjXxuYoGlYRpYNztmN3YpCuFTJjYHVx21etutjnWIrd5sjFPgj62+x/gcp+94OmsJ+YwmZTc7bbjV8O1s+Lxd4/W5ZZ8TGpzG1VpL864XLEOIY1Ude2n86Ey619hSObUmO2lGcO4NvUbJlqQL641jj3k4g1MoiHd3b7BjVF7zWkPdMcQ7GdwQPQp7Y34/0PwPrqNfY0r9pONSK3vNpPYMgZ40aK686u+iSzlatI6mEq+jbl9KejpwUmFTr3934PPok84if3sK0F0AA1kIUKQmVjEAW0wVgzriCcIDUk4HuTgDo933JOhvJ0E6oklQ40ng9qyk/eNoJOqZsfesSJvZMz3tCmi1Cugww1JkzOqisqyLkq2/sABSCTRZCZSufOyr7V2L/6B3LU4v2VV5dxB92GVQO/fSADs666CyDWoz/eFZ8Tz9afmxtT8mzwdUb8gzWtt3ELLi6pTMeiernBDuVm0TGZAOwU2XoX02vjgTKNIkufTa3MnMX63ySeYGUWTHNXcqSRVJJ0+ug5wOQ6eoQe897qD0704dsVFK/utTJ5wSUhYwprRbPXrf04X1iMnUee7pst5NF23S/HTp4XRxkhJdkhIj3hCM/KLEg0eeJZ7/scrOrYxzFW8yveDRumrveQoigBM+ztIOSa4EDJ7+2mGRp+QVFXlSaKvdnWZGp5QFapRho5873o1CAu1YC/UyNcqjGXEcA0Ar9bQyZj22pbwtz9W2Xg03CFA5Gx2mgrY8t3N57ufyjObT8jx3ICI9XctzP5dn2PGywINFXgt1Ik+Y5QZAIgfLOjgmIqwayayaFbYAalboGqpuiUMvkoWr6RqzgWl8jdNUSKz6wzenDdKpy9FHnPyP+v/pTAjk2cYDiFtOxNCLid8l7Y6caB5v8x/moc/8Z4X5jxM66ZQtwZFs2MDt/2eJ/5nkE3vFIE4KIGVc6EuH2DLbuyDeZhDE8xEHcbfXpUgL+i+qMJwu2/+XZ1bGe/tXjhIrrbLymZ7ibP57B1phUXSOfbQ15a8VlzhLD4+xWEh9HGM51Zwu1ZwVHyqO8a8epKirZv7rC6+6oxn5zh+pXGsxT98Rpzp93F+vsSyYrurW2GynL77J3WaYmj1k/KVPj8sb5zEuWsya0wLUbvJkANLVLFC1vQsoGxFRP4qA58V2A0AecNZsPARTaXSFLQysjC77qLX/cU4MtjXbP++FgZ+xdXw3P+CJav681wV+TJsBkPYGEd5t6zf2o+x9AVgUqOB+Trinal8wN+ahgSGwmDtYn2SWcG0WpPEB0pI+t6YoF+WcDscjSrk9MzWNgO8O14wVYFM40WsNMCpPbMqPkCh/F3cCN4kMFOUmqaS9+RrpBjFRMZQ6O8cJMRE1g2SRYS4WhMB/TmQVhD4kK0s/ACiFj0tXWVoAFOIHHtRBpyjVp1RAZzQ/5vG9BZwcBCPvgUTx47IF4vheM9Lf34RpqQCw817JYMGa1hoSKexhTeO24gt3AkWWtexqHMfrxRwlBH1snQnBtay7fnESXJ0SWRAsj2bJTP4okgL1fg1nP/Cc43/k4PEPh4zn2SIhJTiWBApZO4FBrAKxcH2DfniwyI+FKzXtFwRnPYJjSe4Fn8eSTpusTyG74xLfzMEKIsTS3lNAxmCvJI+F4yfLhObJ314ubEakneXCHeBaECwugdt6TAv0g2W5V0tDSrKK4d5iVfvktTig4blJSY8Z4HbHVFVj1weRaXPZIZH25aiy1fik8uB6cT+XrJ8JJZg355IsqGJ/95dPKCk++tlq3UnsWrfDSuFpMW5GKu+OIwu9FB7HkbnrOBKX47q0o0vf6G7HLHE6LkQBcvgSnrt9g9sSSoyuxqKIfQZEUacl16UWV2NjzT4DKL0TeuuUbSNsFxgw9/cBHcnJvHWKqFHFYMIW1n3BDL7A5TgSVkOBNfAC7jNgzTittC6tNNRTAuDwqZV26X/Nm1WHvOUBcc2U1Fl0fD3tT01TIHY/rfTBewh+dSep1qWaVmOJyL4CkLrTSOvSSKslBqkHGmndaaR1ipC96OZLoOz2926wUz7sVTevYKw7vbG+2rtuDvTGutMb68vGekxtWv3GUznx6ECQdIkS3ZDpyPVn9yVHpxHWKc+VX3BVL40wjIduxSIJRUAH7nRMYVxaLJyzPLpIYSoUk9VAg280q9X4VB7T8JRTtKGUP1ZhdaWPL24qLHRMWo0edul/kJuq0hcDYT+aJ/uwc86LD692xGLXt/Wq2lF7EhO+8I91E5xqX/iCgPnCe0Relpt5yelZooIigvI8zKjkZsnYt5PKpOoj0AdUHQN32b/T15AxDgsZYey2u07qDE6PUuDWKyTiZ9b+P7FzUS+iQEIbbngNJzM2JDNWY+XTEeiMDaczNqQzVmMt03E8o8Jw+l/jeB0VxvGMCsNpcI3jTVQYxzMqDCemNY53UWEcz6gwnJzVkJxVjQ2Q7a6PCkEs+EioQAcsleHkr8YxXss36uapUXdS6jNlMTFUMweoriik0W/Wosuclqemd/8s/l2GexfN6BpRZnTz5YwO5rHagKay/rnTPVdrdqwOa3dPxRIdbtyDyXbEUbOwCjACI5zh5K2GBKxqLCk7bvJW9VtP+5ipBh6ywylajWQzNTKwHzdFq/u6s/VL9AgYSvALogHmpK1GsmkdKi+PQNtqOG2rIWP5WuPoFhjLD6csNaQsFQeGFMxrJxE1qLr0KjCkYFo7maaR+rvAkJ6J7XAqS0NCSrVFKowjPTPb4bSQhuSOwI8OW/GZ2g6nWjTkH44jw/AbnqntcPJDQwpDNIkNviE/CeHDaQsNyQdR2D76hmCZcSpBQ0JANVaKHTkYj073Z0jap8ZKsSMH49Fp+Qy5U9fYMXzkYEQ6UZ4hUZ7a4lkViPIMJ8ozJMoDieDwG4Ih6eRyhhRxao+X/MAAejjdmyFpG2h6h98QjEknSTMkSVN7PCZzMCadtsyQuzI08qNvCNyVh1OBGXJXrj0ek4EMzHAyMEO+xrXHY7IEY9JJtAz5FNfYI3qUYEw6YZRRNCZjj+hRgjHpJE6GzH6x0Qy/IRiTTqxkSI+E2L3oG4Ix6QRJhgRJ6ojHZCBIMpwgyaAKxou1ogQj0qlmDIpgvForAtWM4VQzRj3erRWBasZwqhlDuhg1NK3WTUq6pr6NUerpZqMCArZ62s1lbhCqOdZkMmiBDTstblRAaJTEo5YFVS24xRvkMlIHkud2lIGsq/u3d5NBVrCQ/F2fI7kevAQ15hcOSOLp0J9A8jP1P4Hkq6SU/iFkI3P/fCeBJIOnoi7TWCS+E0MAXk28i6ogjrUgZrXRGWIp8JIl1qJLmWCgoE2czQOzMZxiyKBEB7WXHnVV3WNdtfWYZvO9Jv4GD8Ga+B81551Tg7JCtc0rm5innzjgzmPjg/PZWjqAyGzX+ad27XG7utBZJYEfnmvq5puG/Yft+U9a8dZO+zdnDiW1WD/bc5xXEoorNwwSYMeGt75attY/teyIW9YtKdRayTPE8o5LyyWMBdUAURlTCkjKXwaFvx4Kzik+z9F58sHy3KB0cE12G7bjT80Zkr+Gk6oZFJ7BEUbYnLfiQr+dXFFWKZe3R1jS5HhzhMWhQZHqf3aIxTXnOsNSIMApuRapmXYMpU75pIIt/k82xbiSzAMFECnYCG5OZqUCmhFcrzqPjriA7kMsNrv9L0V/8bJV+r7+PGs4fZ8hfZ8646SkBkmJk9sZktSpM06Ua5CWOFGdIVEdiiEGOQFvygOkyeIObFpTi1L5F0e2rOYOUHQpv4A2oDIajtBTE58aAqVrH6sPCWFvASJ8x2TUwd9CMB+iZsgSZHkDOCZesX1id5UqJwi+MlWC6AC/qFOGIf73uixKds74hiiLsrumSahfPpP98rUr36lKJws8P5XAj6k2mEdSGywQAZJksreGLJiF+uW9Zfvl+Ev9cvyF/XLOYk59HmLil52Xmvy+luMEg4YEgyr0k59Vfbu79Z9Dk4BtyLKmxOBxYAgY4SdPhCiB9qyfOdGhIdGhGkp96Sa1Gcra2PEPSuGhoiPlbPkqZhrCCGs1qUwGQAsaPBNuyQY/Ut7Hs5iNxLBCmxbCfACQAZIl9Exhd+i5Ih/CjnKqs2qm8C5Oiz/WGPYH6hdE3nQk2lGx4sc0AMfjiYKiOOJIlcgCRo9KFJtd5uuyXJf1umx6vG9Sl6q18lrtd1yaSA3nzHS13SqHa2VTBMVa3S3CEh1JU3txX9S4oxcNZ6z6bF36iBOZtHU5aR4n+cOyBzjUGiWwg2/QsC7AhgmfsduRxu2aw8SPaA7zVF2TWJeEOE1vdjucjtOQjlNd8f60BftTJ8g0JLoEDafwG4L9qRNXGnK/riven7Zgf+pEf4aMrNsRLwUtWAqcPM2Q6XQ74qWgBUuBk1QZbb0NGsEW1cmCjH68mfA92KE6kYtB+YVXwzvwiB5Or2HII1qcpWcr9KBi4kQHhmyZ2xEds+smlVbWPm24yQU2QrsXdOiRFTRfAnec+yGf5vlRJ/bE7kk8c2ICFbgBke2Ak0ASHeeCajdWR7Kjh4nRSZY9eQXx4WjogwRpnLM+ffp07+VrUIodAia/eg03iWS/jDOj5wnq6MEccpzjIVpx7BMxLttlhR87i7palOtEA9eAgFhcSWoeeUg7eCqKjx3d3O4SPETGUx57OPbtIEWUPLynVYhuar2txJ+SXwe6y2kIrdeguB39hB7umcORUId4prEDrm4GIsanyyTYaKIo6MmtWBpQHqe9jmM5zIw5tu20u1WWclqearaRolSRrmJGZZHxHM//oZmuU0M4YBCXD8vklBePD7EtwAIqrdZEHh3cGNzLOr7hMN/n2KHS7m5Hn9MGwpSB0+1lNWBwdXvb20vSpgDUbzOwlDtEpRUUcZbp0P/693WxTT7OxGIHsW0Esc3Ry4YsmVuKo+P4Yk1wniKnpTHwR2jJcGSrMSyGPRW1z1s3xcnarlRUfgjHuuWkeo9SfdLpCEhDHKMXs22cpYE26tOdfAGH3YliGbbp0WPpeAOqDkUVTjs4/youosmyuQEbE0T4ce2r8SIPIXSZaGEd0vBK2ms0GANPy50isXRuNQqzrkoXNY1FAnTxLlAl9ztTR0sZQ94tOVIl101Tdr8U3ZcpumfVdQ0ETk1pWZxvTwQSs05Fd9LKYJxAvgxfl9JMlCQ5jv1DE/gX7bO16t/cBVtyC8ihALvEvfhWDccWf26D68OM0VEAkijuFs4/xZD1ltAbxGsCKjf0Rk+R/OHIDYPw+hduILr5y6bU4OA7NuzK/mKbuqhOJDqeOD7X4X4B7+EXTNQqjcljOOdy28ZJscV+CndWMu0Z+k3rqGZYYcMcO7Hb3o166GA+4DcBR9U+SqZcT0OGwU7xBjTDIeiHTKwB74oS3NPEmmLJG0J/Bn6UiD8HMhvKR3DXk5aFe2vVQTNT2l4z3muIlMdG2SHKx7TIHpnVjRkEdoeMHtMCe2RWN+Y9rl/a1rSvOzp3vtQVx/vG2A2HCR7CBNMNMVhHAkzwcJjgIUwwCm/hN7RwJaITPV70z0uRQxAP4oHjpUjgYluXSeg4tnnAXT2e6dGEOCQV0rZaO3OCvKtep8vfuf7793KBVrhkELL655H8m13oSxh8VHOwOR0+SK0eiW5Z4Hnc7LOLaTjcvD92DPNv5AKoDK0bMr+gQDYvZ8FjG1ivdhkKsilW/WIsSJm+NqxN6GjeFEZRVmqigDwqHw5APQSgbpDpfwrqj5tv9Tff69XbVOpS8X+ZUabHi7noKFw2LWGDobyO3zcYaiR8g68vi13HbH5kOTj2EBwbhaDwtdLvX2vLqbnXWvFruVAnjHeLyQB292+2FtStotdyAVTm2sitKmT+3SK3yu9f67JK/tJa8aB3ePQhn+yGndxzT3yZaH/3rV68yx+HvEO5D2LWX5jl2E1zlWQ9+2Pb64qIUvppEEvcQF355hSrOAULXTNCTN2Qz/TNvVnoggU9UVX3b+tivzDzMDSIIscNUf+2FckdgzDd1ZzSXkcFXyj1W4jzr+TCvnD1rYQLPm++RrRiRuPE448Q9eGQ8WPNN4vNmvetERebMUwaGW4AquIsrTWkJxTTDgHTtT4V94dDyI+lCF5e9MOKshQOEBp4nR5L4BoEPijDgd+n4O3YXAd22/MGfh8Gxccm4LJo5V/ibNBlx9Mh3KcQ7i0mbNjdPbxOl/UobFkhoDHzLch1KFvdikVW5MPHdRkGtunQ81PoeSijRY2QbRcO0ei7X7Be8hryJCjzxQ6e9B9362BpjNS5/Ktk9yqKsTGGfQZA/OmA+FN+162GmLx5c8O+Z42kL30ra5wOtz+P9ipr1K0/Z41vksWrknTQa26MV1njdGyAKbw/6IJhO1iuS0HHc1f5rCucW8ezwJBIs+VgIHsHwQUOnIU+WrKzAnGZ+qb42DwI5W/5S5EBNcRP1fM6r/zP6e7nKM8N1955cQ16sbCM+rJWjqZ37p+FpQ/6ZJT56NbhnqcUN0S6zz/wCUr9ZvSdjk0wjS/wYib+IfrhWOczk2zPXa8X4JyORDBFE2gxvH6m51nMdHyAKch/i+H1MyYEsEr1zcnmCAEz5ZeTTVyBvzPZ/rRFm45mMOWSHa+auskiXJ4fP96qocgUbNXskCH5ffh0/IWZ6psC47yssXFoc7LNTrpO15n1bhOA4tQm0Cznt+qMKbUGx6tj+ZXQ0SFmam+2jnb3X9g6TseymGJZvNg6zvTNBPCfbx2nI29MkTcoIPEMRJdFdqMXOI8LSojSoE3iZ8G+jHZ+fdqpW/WKc9PRP6boHy82PjP9g+3+TzY+03FKZlqvNz5281/Y+ExHVJnyyY43Pnbz9xufP213WMNltfHFzmc6VswUK+bFzmfmb9YA/snOZzqazRTNhlnHc8jn/HbtBQX0e2uvo+bM/C6G5x3D886CaaBHpQoj1iHjYAiHD4UK1t06UxrcjJ87KYbwntqj8UiXHbfmo7dcNBf751X4zD/e7f82fDpO0cztXfjMPw7rvw6fjqo0c3+3w8tXXL+Poit+AqAECvPSzmt89upXOEdtmvldwM7/JwHbcaNmfhuw878VsB3hauZ3ATv/awHbsbimWFwtZhbOgMU1HYtrisXVWkQ+ngGJazoS15RddwzGmAGHazoO1yzlNTBmBhSu6ShcUxSuFlMb52lu3U7T5GIYn1XbvSJy8ACmJj9EHeFrkr71KtqW0Gn1ZBLf6jwsK1V/Vj0dOWyKHPairDQvK2vUeaJfxXJS8KPc1C829cMy/wwYZNMxyKYsrV+NpCdAbzoK2SxvYD0zoJBNRyGbopC9GEkBg2w6BtmsNhniWlcNZoNjcc1q63+8L63BdHBspVnfreU1mA6OljOrTYd4Y1ufp5fT0U+mGCYtZrjO+kSMTse4mPXtoA3MgacjD0yRByBcthZoEO4bgvHoyAOTVABAkgLWh24Kcj2ppwWmhYSe+wcVmI+94T2G1A/mFqEGRyOLsJHNXD3RPPb4nAAKc8dbiJdE3WkDLdJWlOVRGiWMKNGYqGUke/O5PoghhtEKpSlHl0QjBIMl0Xh8TtMmzfyqZNJ2W6KRsaUv+xx+fybVsRzZGIuFMnKVusPz/D/igD5gQSAoeIEjrP4ybRMYgkU+15L8XyKoCDUyfQdRpcCsYwHrrOOwwMv0sVNVrJN7gFoWBTV11a/bZFz4UOU4HZOcByr4g8/nAs1plHwKpEE1guEQLg5PLyezDFx7uW7OywnGPnfNNGgjtptmGl8/0ermVEA7dc8O5u9J7arHFBIjdLWYaePonxSJuQz/QS1Z6r3CuKmQytVQmaRs/+LdYVJohYo2BSWVLKXeyj7R/wn3P9m6ZlNAIES/Lsd5CYrk52RP9rWF1NrY75YaYfAP46fpSCiTdA3CGZ5UVt3c2ppsTlbgHxqb3APtjuKxrPWKtGenHdUA4vE7HU6RUda8CXKmsqGa/0R8k52eoMnMTuerig0zd6eDpaESNMgDjRn05HnutjRodIuaxzmXWB1tGpL832HmOLgko85nEo41M8lf4XlB1C2CB4Hy1z/IqJiZAo+jt4/JGLch0sUcQ6gJPczXgyyMvkXNh5XfkfKYt2hR0EOE1Cwq1hfA9E/q8xOETYxiVuF7fELTksQiHQtlUae6xcRFiiEJeoc0+w8hLjsVjNkt8/zcss+hg6S7qWjH2cYYxyvufzlvKruvaD+DGTgpxokZ2D9WofR2Sdza7KOOtKWgU8pSJ4UspBTCcNn495X8FUaeTKVwsqNVBunFHpAaKXeNfJ/Rrst+XY7rcl6X67ycx3WZdOkHiUtg5JVeQxq6bu7gynWqpE1uWpcMJaNZOtWK1wufvMpK+hs9Sm6NcECzN071H4lQvg/GqGIzUBIxbaFVPtjNKFWFA0HhmT2pr2O554yh2ZQuba5a4CznBzCtghjqmFBTTCiI6qKs7ZLhFqSBjjg0SQPivveZjQe0oeloQ1O0oTbjrWVAG5qONjRFG8K2K8AjzoA2NB1taBpt6MUBQLvJdP3HCOPp6EqT5KMXCGPdvM53uMBNw2nTqHGHk0rWHLXO8j4eghQSiQCzkT1dmniTiJq+OukoUFMUqDYjXIbd3BvkL6wMHApSaxWvCYIGroClbI9kzXGmpjhTCJ3BI/sXib658edi1o8LuM61BPtatQMzcVrZ4PPuBRznanbt6VCvCroiIF1NR7qapFC92pH1E9IFAVvBf5dt7kkTxH7is/jp7mhZ02hZ6wg3TL3cH6JoCItSNEcnBXfyOGs8KsWOkzVJjnpV4e/1Gpe7kjgmtQCSpFD8t7uY0RUz0EnBjO9BzHAsqdlfAll1S2amhaek8+RWFEKx8+fMRdMfaTz3KgfDPQWEiwIC1ei5YEDfIVut+x3Xm5GB5/0n6ZsrDsjwChIPV4bpyFuzv41k/X8okjl61+zGwQ8Z5XZXVeipTlhY4/meI11aqmKU16zkDzvFU11V1PKV9BOOo1pLw3+uELIBTVXRkOaxPlZrpqlqhPH2OHx3jLHZ37AU5o0x9gjHOGXX9n30KzDzN8x2j9A/isuOVzbFHKMXyzNIjm8EybktT448XodGxxCb4w0dVTet3G9sNlQQCt/DzM/AF6iiVC+bXbVbVyfWvc0xiBsKVFiUNBq7HdaGMu/AkSET8L7n2zFEsoR/n4ayzGYzN7QwmS09kd295QdyNnY2vn/SmgLfu7KECAp5FHKQWF32d5oQUn5PmZ4FxzT29nlZ7c/J3t6Xi0k40zydhEk0vdq7pSYvC2b0q1+XQ5e+Y9yKY1Q4GGUHa1ZAhZuOCjfHuyriKL9asxz/bQ4VGkH6C9asUe8PMW2UfFu8Xi1ZjvE2xxs07rwYb99cshyJbcolCg5F7fPo/ts7hY0BF+SKcxRbcWo77XL2nKgqWVx8plGMz5SGbXt62oWJ+mF7VTPLpBbgtD9nKTAxBzNHCQvpbdtngkBr+17b4uhKGjD4C7i+FBqAF+2doEST5QoiDrD5fixauFBKlm3HJEudhZNo7ipRIj04Obgt5TRobOQ5r8t1fkDK/kD6dMr0F10ypk8KCmVz7EmdJUO7rNcHSKziVb/+c/BYnN91PrdzVzcf6ExH+ZtG+StxPw/rZ2i3TbPnU0efRvB1G7cdVpyChYROz4dZ5AFHLC/CuUtQxYqHx3YjxE/p0/6cPQ2rMfY0aW7CS9AelUapUNTmTvc4PadwpZ7GX8jPF0Ys6ml8r3oQ9cBKPxH4J1Y172pmhNTl2E1dX+xLV7HbjDtYmdvuP56cqdOs+ct5KctalsLonW2XdJhht6f9AqmLlv6oUzmO4yTFMKGmHu08R3CS5EiJkwy/BDBDGJmCoyTHCZzmEhSS7XXzSnq4QDQ77StHvZKeM9dJtrdrtzRmskyCJEf0xVTqLaERKb9Jh0kQC7qOgZUPFYah5YaX7rc4XuAUL/AFa93u/les9em4glNcwResdbt7JsqsI+Z25ccXrldKRIv+g5RTOl+S2W+mlciQzkGlEksSTsL+FyoBdoDRKUfRGH1x6oD/9b/CLb/iJPYcn6DxLuzsO7clsrOvjyzR0RKnaInA4US7q3lbb5MG5TY1aLsc2zHEtLHBQW+lrw2Yn5VMWqA2aA4L5yj5FQgsTf07QqQaObc8ye4ijD8qAI4LOcV2pLFO9NqbToOmNXQSkjEeBE2rLydDwbI6zFW2ks1e5OzHqjAyStZOYVin1Yg7PP7IBSw5K3wssh50PGSRUAOBsFQI+TUiwFMnFMMu23XZdel/scspyILsSKcCCMs8T+y/4hDYU5Idoh0jpk5VY/tEzLEspxEpe0j8nTeapQQxcDr50cgbgGEDzhx0ped1v5Q6CuUUSRLrQ/i4zULH79BjmfoSj5B0jDP2ZryqJIxdbrV+7KZvBWJ1NXM/5BLqUvSZuhRuczZusTGu2e4u6mA1fR9rrUUjuComwXWLsw2X87pc52U54unoFhlxMimsF8CzePcLcnpsPRYcavNw7wBBij8GxkUanxORnSa3LLNBla3Luq+T64e2xLHleBiOT8fcnOJm9hJXcHl35/48SsNBHNqxcfvLNgOMwsc6x8ScK71ZKnmTZ1rTZGn6umAxWgzhfkms2uhzsxyeDADHtJzr7UKhu9xtUpl3LSuU8S/AopibAjXa41EumosfieAZNmRQjHdExykuYw8JcTMw3pmOkjhlvNNj7yC7e07xE2OkLRYkm9IxTxo8AnknHq2ThlXLo4tdQCO/79Vu8mIYYgumPQYew+3kevAPHFdwksX3ant3M+j53vbOcQKnaH89toiZK8glHa1virjH1TrouiCVdES9JSpejw1e1kXU+9p1Oxbf+/CPHbcceW+RLvei49bF3ftOxy1HvVtHft1x68g/67jl2HRLbLoes+lWwKZbjk23xJfrNSqqrcDWZjl63BIHroe+LHYz6Lcs2E5724P+yc09+c18W8eP5ttybLR1jDcA23XR0SBIykBdt6IiAyBTtbaLyyxOSMYEapFE81eJnSLvr/Dso3cXVXG4oZlt72dO0GuV9C5bGh/1v2C4XzBfY3Ht5m6dLpg7t7o4dP4cHgO9HI9tkWn2clivnw5rFwySBYNoIVgBbW052toSMY1l1ufWdqXncdZyRLQltlkHLi36hi/nWVe1Lvc/HDUtRyxb74hluvn9QeyYYSu9OcZa6YfHWMsRvVayiR+COFdgfLMcJWuJdNVrpBS5At+b5ahTK70RTllp/Kzx3PwR66m3cHO6Lk7UC/VcRThG5npQvrjYmMgyQSiBHdNyDKi1GVBxGErr5SxG6nscjy5080yWOy9iRD5+GCMc8WiR9fNq+OX0w+HnOERLHKIeWxatwKpnOT7QklVPD1lIK3DqWY6rs3J9M/xy/dHwc3ybJUZNjzkL6+LbIFvW/iTf8OyAoAqMoDHXZvLPc3PRaDQvRlruPxxpjjOzjDPzYqSNn440N1fJQ3k50uZPR5qbhCKu9NhWagU2QssRUJYIKFBTCEZawD9Zjn+yyrsMtfwsQ3XUlFVsIoWbJrt7FmLOEab4hn34n8ea47KsUt50Vyk/7C5HdFkiuvSYnrACr6LlqCur2NyL0DgrsCpajo2yyrvMtPwsM3UUlGUUlJggaHfP1musPk4iGV7MVEdQWcXWvXAvaHejjdhhcrFRQq/XeFQrluO2rPJO3svuxr8tjhOO+rLqG+buCqgvy1FfllFfYrDeCqgvy1FfllFfYqDVCqgvy1Ff1jvqi26+O7RuR1SuWo4es4weEyOt7O4vkFbLkWhWfXNsveoPj62XI9gsI9jESKsVEGyWI9gsI9jEGIMVEGyWI9is+kZvSTd/011u4phHRwwysLs/BxksR1lY7d38accPe8sh75ccKXpMqFotmFwOlr3kNdF7xMxdLZhbDk+82ru51X62G3NQ4yWPgh67EdrdvaG49hFNFOIybvsIhVhwH247CtDVAz+O5RDLq72bce2nM86hmZfQzD22O1wBmnk5NPMSXhnHW1EfBhPOgYpXezfh2vxZH7p5JvRvj50U1w0b/IPFsfdQb3U5jPDq7yZf/+nkcwDg1W3yxbv5AAC8HAB4dZt84W4+MF1YDt27+rvJ1382+Ryidwm022Prx3WD9P6kTJmT/I79s92MM7zvi61V/zLlvrG1cmDgZZYJ8daqv964xSmTg+Su/ubgYfUfHjwsB5tdAsb2EW/i+/PgYTnM6hIstY9wE9+DvZlDlS7CPV+NunH8aNQ56OgSOhTo3eDl7tDRLwIRBJCM+qeAn5lsHV7obDmY5BrvTiDGT08gHIRymZtAPPpGUERx+MhFIOOLg1G7SYW69EGs6D4uJ1pOWjmmMD5L3szjIWg1bJrEVwUWnjyjtVFGNZ8mHwn2pJT6B2+DuALCLDJJSJSXK5i8n1OMprq/CJAX+2wf3PoSjDfqddl06dvARQjhM19gj3SXowOAAPzkcZpF3nBVG1UuhPHoNzgVzByh8jUMndSI6ahtY6RAuZw6AwYYSVByg/wIbFHmBpN3Wj+mx09yUUnGBi8OnnWXaE1gv6mbs0SV2/xJqW8C7LG9ZoDpIi4C/yPVnWJGYJBYB6gpf4JNxl4FJLASydSBhZczVWX3FjEdM73kBrBLOPguJLVb99ZkB9/2v+hp+7NOd8pBhAHxEna5zst5XJfpusy69O3m4u1Q+gNm+5PRv04IJrQTpgEldRBVsvimAHOJZrpMUQNMdmJsAcIW+Xds2vYwlv1KyTYG3ZCXQMASeXngqEroWANeDp6PH6S/zg2xrSd5FFqRhKZS2F9iSGhgiaeDRl9JK0fvEIKZUEInHBZ4G0KCPkv7WKQTAmt5KAnewIT8Wel1wD8RCJR8fBLNCcAsdeMvdcVBIlAIMbN87UKbUYyzzuGdgejrFOCifVwnhLeT1EzjM7sc1+W8Lpe9a1/H+QSCr+wyX5dFf+VHglsbDeAJP6UnuVF3efCYKkdC3w6ynNGJ+KFhI6GYhC9MTMUHx4SoVsrjkEh5mVcnNyiA8OahIUEvg0lKv7l2Lg0IOIACbHaHXwMeprFBjI6kGPBqEluAPwXHRtbQ0JdqaCDIaGhAsJs/A7thdTNLC4ZN0xCx8cFIh9CZaUuo8ZHJyOMfdlqtcoAc5YRVJ71muS7HRxUOtxKUbsMDhnAcHoj+HwQ44BS37oFyEGfAzueLqPf1Aa6gUGqx3rf/rdclxyJNYcl+sMtxXc7rcu3LcRzXZdKlH0ouSRLSdxw5HkprB5WpoIK4akFlWVBpht/fWmhgMhPN3czqFRQkU4KYFlIwohhSloWUVHZIGQbbx3mpxZR1wvaPE7ZPMY9lVxo3gEcrpuDbJPXAd6FENWgvDCk0Ga8aX30HF6BIM196fnSyZhaBcmxEFDwlNpQ5sooEjuli/AmcXCOVvZGpLOz+cY6sfA6sIkB4OS85jKig2Smiy9BlUaZZ5LBnDdIH+IFBRDpXjsEVyS7bddmvz47rf6cu/YBwSa+w2YP46s+RXdo2t4Yh2EKTdHVbletp/mtenChSCd5/TCNy7EUG/yN4/2w2IpYROQhzJpEDsFoSOWDjrAy4bHg/PNc0IsYmsh95c9VxlUlMnEAzH8oA0yZyrC0IAmS4RkltZVM62l55ICJoYWLUDfQn+FX9WrniSxOmnWuKXRJPy1BR+9ZO7pQr0CX7mHIdQ6R69hDB0xzjg1QAuyQVAMFmSF5Dl1UfcL3poOtL4HQketH05t1iSjps9C2sWKrlDJSkwUfaPk0E6FLd2ZZWijQttSzVkC7z5G80yyIQu/o5r6iHAZziIjMUzmiMx5t8WRhbBfrsNuUHkgxOeVwVqubMtNcK8lwIL0aw1ZxnVxPGjjGkVYOJGWd/hStQYj4DhDK7OiH7yfv7OmkqVFTOAvKo1JaZBHdSFyuedIiQAt5apkxfIXi2n/8523m5xE8pWo8KtRwYQBJB1hZAarGBluisiHGGQGjckfNy7Dfo3PwdjCW0xOXDgJ8wFTMMuWQwIa5JcjekmgY/MAxhzEuy+4BcH4SA2uW8Ltd5mY/rMunSj0m36xQHAZ0YjslsEeZoGpNrrzjUsTC6sS05Sxtviv4wep9rziUWZbopcCAXVQymS/JX32vOtKyFBBFRxY65I0w615yxl5yxV5x6rjhtrzj4ty05UKDRktPOhWac64vJQVUiQYY41m2vJVjL9lpCM3PxwFLeMafqBct5mQTdZ9LNtYJLjBYTetnl83+HuapjAKiMpct2XfbrclyX87pcuvRd7UoAonGMcsRdXXZXowP+TA/8r1iBMRewGzHPOhu5/40VuBmAtoTkZtEEn1O3DyrbMCdtZCNRl4kknFcEwJj1d7H62kksVMdXBBS0vv2vRhk3hqPk67JclzUiAy7HpFniyqBFwn7dpRlo2bBfZ9tJQrZ+raZ4NJotK5RNYn2iFOvYZXnj6rtj5+5YoPrZsVhN2LHdtqLFBKmMlKyO7XNnCenMEtLZscil1bF9bzNm3iRAJGlVqr1WNQCt2bq1bTIFZBKULWKDkjJ1hyuJ3xLzYeGM3J9e+5lO5DObyOcGteWzg3XZ5jZYUKeivsTByP9klKEIWqINy76c1+XSpe9TV2kSkSgm8uom189Zf9ql5dpKWpciLOd/sUuV7tV071zNVbSN9mXYLy3RXeat64/86PFN1aVCxA/6kW/GMWEJIhfuI+pd7iXVexxUdslM0JddHXlqkdz0gqirmz/px2pteO9Q4x997dDRvnRooZLC//0cvXXj2WXF+lM8XTT+vfPOHhNN97iqRG877+qxlM9+pPqVVYRuvVeuLqvXZYunoavyiW02YuEq3f0+of62YqbP/mW9LCSt/7fr5blK2n78ZKkB2X5bOTUdTgpiRacrxJb1w9Wyp3OJxJ7/81jp62rJDZtWS27YtC7WeV2u87Id12WKF05XuRP1b7QXue/8dUL0N7r3Iqj/n3X0Hzr1R13JgtxiYVVyOezfKwXqI+pfJsfq33blPa1el+267NfliPvXldPEaRxtxv27dv92K6dtSe1at0zCtBo9kkR1sKn/tVP9r+we3h1cxxb/2+W0HXGPav1rjlyKmtaruZ87m7NXx+5VVD1sbzN3p/JV2Kltp0f53E9jvNkmZ1WrpmHAkZSKIpa2zvgD63EIFKiuxrM3bXxuM7qeyyoB9DYMyimgoEtaBHTWAxkSWFaxjQ+3bFqtyYVlKqW6S+M0JqFXBkS6TNdl1qXvcVcvE0kUC2LU4+v4r1PhY6uSfHfBFb+9fzs7/lMqfCZVP0qW0l7EeYD/zJD6dh2jwLItsb1dl1dW3Ee48Doa7pLl6XgBc1kBzMUxapc4sy9UM9YKcC6OKLtIe3114n1zGf0fVM1YjrK7RNl9dXKtu/+VasZy9OAlAvCrM+mLHvw/pZqxHM14rf6GHLcChJ3jEi/RhV+R41YAsXN84WV84RfkuPUF1PoTcpxjFS+ShF9hc9YXVGuEnaV2Q/XwLMc8TsfxBlhnd3+AkLG/+PKAd6hxu/34kuS/5B1w3G4/viT7L3kDsbO7P29R+8Mvz3kHH9+3f4Eftz/98qg3eFa7+7Pea/4B70DkdvvxJd1/yTscud1+fMnwX/IG2Wp3f9V70z/nHZp83/45nNz+8v6k9HbqpR9PveSnnojALw467XYx8XuedJbLr03y7WWfQww76MzS1oeot/K3bQJ2LNudIQ2VcnfdwmaHJXLIhieL/NXyuGXHErXucslK57HEee655fRheWFZXN3nn9i1GJJhWRaHr7eC2JT5AdKInc8B3SRrip5kLQEVoL5dDHSpNK5fedyYu0LC9cwOPQl60KHnOLM36jzaoScNflhNGVTyYc6nS2XySPT4XF3xTBRtMYTOewyi5CMjKdUvapp2910xTOX4IDkvp+rLTYsHyA11MhRj2Mnn4dPO1lNa/6Qoxn426MMuj3HE0W8kqHe2ZsXnr1XO/BnWONXzOKPaXS89/OO8vFc+r/+N8/qw3Hkvk+UzhT+r5epuu8zXZYlSeOvBLx1eXhc/7S5lCtP83ZzGkXN6NacPGi7f5zRtyP7apP75VLZaKN5OtdAfzW4VSBMlKtY5Y1/M+ZRtnlpR1E/5cEbn86pqbj862KcP0iYYI9Q2tNuPL/GJgfQJqEgcfsmTx3n/z/0lXV8Skkn37cMbID9tj/HrZ0TzsO/48kxC7icEND+HQ4DaXSJc8xb2/uIp37o5+fEbPhfOZqjOS8HTRUsb+FJs77wPJACosXmZHHvUlzcj6BCQiigvSF+4NXhUo1UmHjU+h5cKsz/48v3IDxoAHlGS9FXugOajtW1NuJHr4+t9tiFFA7jbP3dOdve17+jTblR9GnCu7Lu+PFpgfyB+HjD58+4mWcu1iCdUaMMMIgjbMLGSiNIL+NaPh/qFkYIHLwcS7/47Ayn7CC7phTFDOo7dfnyJjxJSWBgzJI/s29+bm7CMiOZm9kGFsgkvajd29+QRXc8UlMxUGetZqYGY+/ZKfzzZRyJJMIyQS2J3fzh4Z34xeH1AotwC3jRgnNtdGz+LP2jCw+nxrT6YSJcB7llx9z3JP/f/3F+iUvx8sVLcPEf/PAb6izHgwwjFGV44MNrdW5Sy4PSBog8E7/3XFx8qJOdA27ugo3n3px3d444uPmC8cym1uz/5ZX7WF5v1ka7Cvnt4k059Oxke+MvATcX+9MuTVJY8XvyQGj4pUdISUN3zmY8H+XhA5QcAasIV8WZzGv+kQX3R7sus9pdfHsTpDxBm2HZREaL4eSxxiPRqZI0fzJUVz5XiJzkVHpBVw5cn+SfebDHug5iHQcPcGwCSO/WVTjb048E+MLyzSbW7PxnKPgbIRDXNFyWS+otcgtKTwSytPkBQUoKbtAm6hX90uodjfKzDi/zxrX7uS5jihU38vr1bDBv6/lmz6vX9Mz1LMdXPfklTpBWPvsCz9f6f+zuqviOOIPUHK/464hFc/QyXQsWrJOouUWE6zF08NRwkAyDM42e6QvGcBXOB+RR8AZVPwSxxUOqWxx7gK3we68ynxnM4Vh8dKFtB7wDgg/0qWL+YoEtXNo1rnl3yZbmYADC+q342rzJo3/Xl0QwbYBbF42bsmXAaI6prOIA1EZLNg8xaEQo5n4N8CCRIn9nrCdmXfnkJiS2nSPjB7j6+w0cMqWTkFDGJ991vjq0X2WT1UYQKGC+Lwpegxre7TZEsPzPw5oOIbC5fDeuW/oth3XxMkp5HTi+W19No8ftjywaUOonD7PESPm5J9gOq6dG4CEwG7/+5v0Oi9P3VD6k/Xy5W+ZhP0yT7ri/Pbu9iQ4tTFA0pqnAwEsz1fJAPQtL+YPSIGipKUZqPJuZW+GKXE8h/3P9zf4fSivmqsecvGru+aGwfREwCJPSoOu/6Z17c/8wSI8aJMhGQ/6WvltMjnDQfTqjp0VqJw8nNRnAMPZxi66ekmx7e+mNedh88JBZSeqT2vO+e4oTlZFyxskoTq8PMWNJAQ0cpffexoL8tZtwMBrsFAeyxRRNvWTZqQLSQst223sIBZsSUT0u2osZB9kbhoB8Wweqgf235BFn+OFjYeryxDxymZ/Ii+e0ljO6BlOgZ1IHzoRa7xyvZt315uHZA/cWy3HfEgQOZZYtmHzFOaGCuhtUgRZYAhwUQBDvyKJwhMjVX48AUOMHYq9G2mp17XvbrEugHeIOlIdnj9QjC3QcxqaSUUBXI7j6+w8cnaaGUHm+h+g9KuevF9qf7cCaBlHm8qHPdHA1vK9dp6JkuH7uOkiDwOYkE/U/a5s14Bes+IPb5diBeu7Cx5HyR6HpvjCdzfO+nv7BKrvDD6vZiuTybwkdGCbUU2G+EA3L9Iiq/2DF1Hxgl44KWCyPjiCOjfhtxqvhTll/9o4YPjXILBBqtffblB9ml+fJ1tT1j8PnMx4N8PKQQy4JETIRKCNzv7v+5v6PwO9KL7yjfnhE4HQpnxPBx6Z3ci939XgE1mV3GLqU+nuxDyHi7kbss8uJwbPaJVeXwwqL8ORYfz/ahR/5548XBxjhDD5WAnktBZsI8729xzQN4gPfPlh9xYPhoZO5uob+n3d3BiC8xDJwMylElzjpfwUmvAs2YM8F+vIAPRNQloN3nEyxod/0LXMGQhuMA9D4f/AFlljAWDh+GyIQHWD7uiZ9HIQz9MAoNH4VEq381AOcRhgb9Wh4GcdzV5/Hp9DGIXFwsD+FvnOk2rU+TGTXvOtJtaqEUGh5OTB+MSAld40WycfmROTMnYB9TTrcfCdpvf9KL7Tu+PLK8G8yzRD+Soxm0E45mIBjOH/t4ng9c4jvGNrB296y66VuDMTF9UCKva0E8KorAM8prpg8uJBeBrB5/RzeI09pG0HQ+y2ZvplS5bEWljVYYN8OKQpNzRh+kdmk0mwmrLVsEDuxi5pEjZwp7hS9v/PaEe94OlAw2PGwWAvR7pSHvDyZXkbdkktRT//QyKfakLy/2Rkjc7gYygTqw1WLE5AxezXyjeTR7j+Zp1PZ1X57O2PRqlZg7NrWRdnDaXlngyO89z7WzUZoG/RAk76gQ7eQdABJl71D5WYPBPe0u7N7ryR5+f1dxHl7llOsIY8ytxaSY0fjswKPHvuLLE3Uutl5kK7xNJgtQONyqpI/Ny5fcBVA3+M1j2XA6tpwNsNfWWOODexmKu2TuDAGEIr+ltQ3ZAilFQB18V5n1BHstou21byyfefWPQbPAPNLHpFkg7k757dnoIDIR2X6x105ApLXPAqmAedTrsumvHm3l47FICvN4gX1Zecuv5Q+6p+MM/f9l702TI0eSrMG7sH90/aBEYjEDDHWDOcNXIymgO0h6hG8Bd2eQUdIic4253pxkBAao2voM5pGZldlVUS3S4Uk61QBb1HR5+nTB87RUlKOnTJMVLNijstV1ZmKeRFE0c3vryb3WLzG97LzEStDk1WW9TF71WIlqGUNzdugOb/VSs9Y9ipmZrXsUnSaplN1jV+pzpTkkdGle2Tx2M++8/tQsn0pVaPeo1R+V+djxR93DrJvwTqoszU+r+WMwn/5lM1dlTE5szHXUv9UEYZWaWeymy1M3HKd5rNXMVjj1jJt7p1dL20ldParrXNTSwr6uiRRJF8bpUo5pkud51P3+9CacSEXmTThJXThQNF5jZqZSGgVY6867Yt56k60yUyNKvS+l7jeudLfwaYh5N07coN0cDKp5X07vtuxA/VM1V+aFYanOvzl1GcbEG6ImXz/Yi2Khp+lE9yi08ace9ZmsCLZXLJwgEwnk3OqyXvaepmHQLHBltZDSFAsnSDV1oNc8ZoJa0at65qIR0zdn/1azDOo4iNKwOK6T0+x2molDaC4rojKbas1mphFdtbR0bJ9aKi7f6uZvVfPCNPMSlbo1Zj3bH5PZM+3aT1MkRGq1ozteaY7Jqbf7zLHSLfHzalm2ejGRZjaPSYPO0JuinjlGJrThBBRql3FnJg/9PU0OMX/S+McJTFRX/LOaPwn+reSfNfyp5U9GckefWn3cJxh1of2WacoLvWy6crBt6ZulKsVCGFaqcqHjCzaRbyjpKpipZD6+iaS+GydltNyNkojLlvSFLjyUy3LVumn0hHbUWEulFg68lhirCrVgPKcto7VX0817ZzoBU0HtRDGmixh1W87lRJaa1m3aThqppVGeeg81y3gz3lP/f02PVHK76skgK2YtKojCcuq/qo2HVtsEzaJPF1Du40wgMF3ZM4pIluVyqNW0EcRMwSAe56L06dqdF2miPJwXqdOdbhV9cVmZ6eiXk14VU51xsDK++anLi6aK6vjKEDCpmLBiC8Z21olVt1TDTislF34wvTTTtTOXRFaEpJ9KvPQsKmL4mcglNBmhUMs61IoYwzTFlV6IqiO4baVLDptF/LwSGsOs+Gvd8rVFq04YV304iimQ2WgNyuiQTpe9Fho4MHdWrTSJ3VzJWOu1aJa/aDW97BS3mEHOmldN07qVM5yCfq1XYEqdTZ80z2gYcup8a1pXZ03Fzm37qSp956tr6WjUj3NkYZn/qe50YQytiGFVzAuhFJ2R6XHrBWc+nxGxUIdO7FbzGZELz19VL/SQE+R3PiMlH5GalqYUtDT6NzMSWnM0NsuAyyGZ2Tj5e93yveWU6FtTm04NM74uZ2TKY0hNzTlRRs2QkYkdaT430/o2s2ExRZP1Ck7fm0/JVFw9F/9PfV6X8yKW46KUjslqjPOkV4SmX5y+uJwc1QUeX+e7GLrGTXYSrBaRA+iKWo0yJ+u1bJdSYkmarJkXqaKa8aohPqx2OSyiIVbX5bBoutNqvrnndPEU3qHl0r2r9UmqqX680ryu+iRJVmmKlkvXO84nSRdvK/5et3xvXi7tautqFV2drfSNWM1+m/Y2J7dtytZO1eVaW2lKWMWfdB236B5bzeS73DcTdQIdpImaRGeK5++VU72D/uJypMqIh+H7X7oycEK+x5em+5cuzV9mQRrNNzotw5wKnnz9phDLzyaSgMSC6KqTZUHq1QXxnMxSV1I2muU5XJD5t3oh5FLRo5YLpSYc81LfUdCdP7EqzBeLUWPLVT896nyxiMVM7Bq+WLqObO6CZn++RPTFMpU+zBfLYhSWsy+kZ3/+Xkffa6Xu6VnTHTNFooqZKHbaIdojmJINUlMmTJ/mG0PWdGN0+tzqUgrtVei64umbdHn4Oqj0C1JLXVza6Fqg2LyW/4KNPpNOiH+xChL6Upo8IFkufmfuKdDpz3nHt4kdXzdmx1elv+Onj7pvvb/3S7/et9S1u5PHE18jIlCcmGH0GjWLt6SdpJlncCGR0U7dzJ66nAKhiEaGTkG1XOZVSSwjDXE9K6rQ1T1pO8oZLy4onYa6otMg2czSN70mLijpLp+/1y3fq+bBJVtcU4BR3+ETCrFc3Hs5U7hMlSRSe/SVoFMxgQn03FfaqlT6VOgHbqrlm8vkByTJyxw6U679+C6u/+ff6imvlimvlxmvibanK5cgSUexkcl1Lhb7cuFJlsv56JpHNnnmKS/Ioq0oVlbqRmf6ODQUe6pamvSKnYzp4luOA3sZVcPHgb0MfUHOx2E6GPoQTJGIyVuTn7T9VmhamO5xYkkR+tAu+3xqQF/wPp4SuTP9UCk0RKKegyt6MSYTc97odVMF01770z5H1ovHtvzk5w6WX+rXqXV4QLOq6mkvmS1JLNO+sFQr2S3TPzmqswqZYyyT+TCrqZqq+eSyChVVMi/7XpOWz1NfsCYqyb+rKtL+Je/3iur5qoL8u/lrHX2t7RZeo3kNtN2qC+WqKYamkwYTPcpsz2rSHV3Qp1r52M5u0LIcMzntonbK9rGbGZHKiYditklrWgzdr2SK8Ijp98FiCH8x5gIXFV8MibTOdHsZrbMoG1vHCE1DtapjKkFWqWL3+ndTN0bJ6BD/p2kLt9rGnB6toxBjqz09pGWm+PwSgFRzYHfCYugM7Yq6kf5U67SvBlBHgrRljFig9IkFyplYQFXxIqgyRixQ+sQCZZFA6ZdFBD1b+pwBZZGg6lh+G8jwzT1dvY9SemWk77f9Q5JRzvMR5V5bfq2xSiXflzoMMXP1ziHESTNTyLNp5qrnmdZ6qkjt5h+oWWM2j3MthJxTPlLTEXW1zjdNh3AKVTY6d68fqtXc5+WERFM6E1Aq3YhpDqlWcv5p8Ja+cTD3H1dVlD9w+fX0BnJKJesYqppfcgqY6mjvxPw1d12Qi47sqqX2uV2CL6KRyzyUiy03BQj1REz9CmZXvxbTBExV8LpPh26YQ7mxKSE8n7Qpx6uj0pN6UrobjSboml5eztk0pWGOmiJNd574NM/ThG3o5tmbFuyT1Dn3uph/HEyUf6XPHdQnYvj4RM13+mSJykfdDqSU80SpBe3cFfUChSoa6p2xMABMfP56fnQBeLNQ1s+h5mV6ph+o2WaZE5f1bJHOAGnNByweu0/UU0B+mipKly1RSkVTMfWR0S/RzuzfU6ujKQfmA09Kv5K6nCupVR0lLlt+XS/Pok8DbZQJ3KUZjAvdemGJlesJmLJFegKmOPU8Ad1iPk6x8/mkaI26/ETNfEiUFJ3snEnrdVPaj952Sictb6tjuEo3SJ/KT0uli6S6Nnxb//KaS76nNFukec7yax15mnT7Ep7Sb92KJRRGGdUpgzMbz4rus3Yx5aaSe12ZNF1ftVg6iGjN0Qm66yryKtXSV2fi4Vt6X9AlJnRJ/dxNQy6XmG48NF9iFJqcv9YtX5tU7EzFrksAPhW6r7xuRFfMR6vWl3GnDeDJiCtrffnrjzPjWqczwnWjAcbTKatnrHHgOPrl8OVc767qKPPh8mtt2VQNzWw5z2xRLV0D9M6Yed3Eol2bxfaaLJl5jppFv05JQV0XVRbtsnvklDTWGbLZ8JsV7IRLLWvdAlO72fOm0i1ZpqedDoveSZOu1nQWUwZWfwzeeb5h/+/Hh93xbRivw/b/Om6H94e//5//8/Dw+M+HX3fzfzb1o56Vh7//838eaQ4e/v7Ph7KZf1S2y79q+beb/62K5d9y+bda/q2Xf8X8r1jkiEWOWOSIRY5c5MhFjlzkyEWOXORIOf/bLPKaRV6zyGsWee0ir13+rl3+rl3+rl3+rl3+rl3+Ti2/V8vv1fJ7tfy+W+R1i7zp2C4f+Cc0ZTQnJU1KSbNS0rSUFf1VRX9V01/V9Fc1/VVNf1XTX9X8V7Q+NS1QvTxxKQr6QJIFSRYkmZajpPUoaUFKWpGSlqSkNSlpUUpalVLS80h6HkmSJUluSHJDkhuS3JDkhiQ3JJkWvKQVL2nJS1rzkha9bElyS5JbkkwboqQdUSr6K0V/peivFP2Vor9S/Ff0PIpPBj0P7ZWyI8kdnY6CjktB56Sgg1JI+tDSB0Uf6LCVfNpIYElyGv5AAmkOK5rDiuawojmsaA4rmsOK5rCiOazpweqioQ8tfVj+vKbdW1f0q4p+1fKHZYiaJrymCa9pwmuacEG7RdBuEbRbBL2poDcVDSsZSR9I3dCbCnpTQW8q6E0FvamgTdLQIWpoPze0nxvJv1rkNPSEDT1hQ0/Y0BM29IRNw/qLJLMGYxVGT9jQEzb0hA3t54YflfZzQ/u5aVk1kmRagoaWoKElaGgJGlqChpagJS3RCv4JKVNB2pTUeks6oaVHbVkOHZC2I11KO0rR7lXl8mVFGlKRRlKkkRRpJEUaSZFGUrQoiqZO0WOolhX68hgd7d6Of0Lz09H8dDQ/Hc1PR/PT0Xt1pBM60gkd6YSOXrkjndDx/cE6oaAzrDmh6BMpnIIuGp2jpk8Nf2r5k+JPpHZK0jI6EEufKv5U8ye+uwq+vPipSn6qkp/Kuu3MdTffd//zyHaH/s/JEClsE2PqRAFsDFr0mnZa3bBCoIVoeW4FHO5ToZkmzZi6V0F8UGUESijw3RYGn3/N9qlY/9KJoAOx/Jx2pNn0Zq9XkYXBE/5eZP7PfrGpl3f8zUinLIcwOWS3HerySWzVU1V1XbmVZd83fV8+b9q6fq7qXsmyV5tOWE9Rqqbn/5DPhSgrZf13t+m7+XNd1J33BuXzZtj26rkrnjdPclsXTSmeum7bds8b8dT3VVcXbdtUTaOey2Z4KirZ9bLdVNv6qVUb1cqNaoZNVQjZdtVWbJ+rbVc1G1E8q6oru2Yonp66dhiaru2f2/JZPhV91zTb/un5uRVdU4uNemqrTkk5dHXblvKpGISoi/p5OzF4bfthu2llVRRNUZZPbe1OuqrQzmRzhta+46uYFPl8LOLr4ZyAqTlqfBjfcmYrw9f3YJSqFrJpVVekP7nHsUR+hgqVcUT10q9YiS5qaO0R+6fNdnh2HmUKcoKJUUZBpqT3jrwpOAVebb6v4lJaUW1rudk003YqZF11lezrJ7UVm2771DUboY9U42jSAg3VJZ63bbbbets+Vc9NLTeVFO2TaspByn5Qfd2KQap2ehpPfzZp/Rkfq39ypBQSaU64wUpXQaGnIAXFt2XlO03G7KR7VAjfpGQb4zebBODej76hdzt2q7cjPvSlp9DxXiRjfL5ygCzvfpgQkuDZ2Hda7BUsMLh06hKtKdxYZRH8z9lnE1QLPGjC2sIjOZtwQokA4TLwO8kkNO4C7SOy0+KjThRtZsgJxAwOTmJf5f3PeTWBzhe774u/8iMD7s+njw9nrwu4TMa+5EACRx042MCBhJz4QSJawEGCRGyAnXvSIsbT5Zlh/4/dPnbpcjy5hN/G7prvpVlqibURuyOshPAeadzzXfym892WjRATyap7dXTogPtaNi306B5xfPe1+HV9GWi7+9MaE1Y5Uwcfh3eVEKWzilGZn6Q3d+g2SExZ1d3ehv3581M5fP385fs4HG7qRX37vv0mb5/Hr+f+Sd6qw3s33HbD27fd8LR3DyUMAdOhXPZ+dOyvp9vb4fb0tTl9tB9fu+v+bV/v1fXl60v19Uv57XP5Ff0/51JokKXgx2X9qFT6oa6b16fXy+ft9/Zwen69fH19vcovX79//foa/MhZhwn2gSbFcq3hNVI70iYm7bg0McdaYiKEK6JCh0oI3m/LciXsTme3yQquPBtRxnbiCBsU3nhPjJZUcE6AkwICbu7m+f1Zvh43o9q/v327HtRu+P789en8RW5uT2/NR7n99nL+vNkcP76/PJXDd/fCadEzWDF6tiBJwXPg0oQp4UK376/fqsP2/ba9CPFZVNfNU3OTsu2Gy9PlWu9f3OMNjb2kAcqaHio61Xjxj1oio0Vihf7r9eM8uM6NJeZBUYZC1bRcRm5MnuMowb02/4TuW77s6damm3n59870kx+CqTgsvPy7/LeffvKd5CCttJZO8tJHJmwWSQVxLofTM2HmJpGnYUPp97KPEtmURBIlzJT4NtSfnRcJkh9s3EUSG/STSNKCFC6tqaBdKmibCkqXCtqognaqoK1qZTjCFAUNQftM0KyKjn5FAWBJMyYL/gklV+kJJT2GpHyhpB0lORNrUq30VzSHkh5M0paQ9GCSdrqkIHVDS9nQrDYUR27oeRra801NBjJt/obunoayniYrQ6e14WOayNMY8/z3ssoT2ZQwiRLkTujLLd2pihZF0ZtacWBStZxjaNnMvytFkZWHUCa/wD6ylYeIZRr+uPwCNOv6p9Pt6riv2O1nPaf4tNEWroMtTCts9jLNluz8DULJGPCAb+79OZWJASNIwkBMv9kM5+vgBOSmcnJkyQRIAs7BK771yJ6jo1QTSsCkXmjv1aQQajpcJitDB6fmJHGYwaWxZM1nnI+kyWhBu3d6+8vF8bVgxHy5NYCY0+3obBezFA8t3+PsX4S5SY58hNYKvfTyyssLLyKXd+Sbdvl3BUizalnQPdY2/E0akf+Wv2xeq/Lfj7L55kVDrdOw1xVkUf+yydPELpg3gGPYCtuwLcKVTkhzNqeJoDwUgZCHhDLbnL1QOTKQa5qXBRsBpJ3H4XkYh+NmcJ5PwswLA47Scl1pVgTFCIg84Q+M87fNfje4J7YsJXQi08KGcTyNgTtTCON/PdSc/11b9fNlHK638RjKk4UtL6Ivko85nlxFN5UQ3R327TfXnXvrTFRiKMO1qAeyzFrO/ZWshqB7OI803vbuDpvAoSvDJWRuvbxTDTMYZDZ15DN0BdtGQCeBEd2rtaxgwFIKGOzot9vd0fXuCwgUWPcUwBCn8XDa7p4/3s/9djsOl0u/3/UXV5M1paXJBFkVK3t6uz0P42F3uexOx/1wuWyH/fDSX0/j9d1bD+vAqy7zxPjS3/r9bhuTLqxnX9Y1S/q4O/Tjx3G4fjuNX/jZnwfveCrr4UWZ//COeH74QHxX2OIz75B5HZ3IiDUJugcE2c5hlMWzODioQA4tmScMynJtCAMb5XiCYg+a/GW6dCuO/RUc+yO8nfH+yFmTbLawCUIaJWVikQdkDA6+6Wvjdnjgo8S8uqqpthyEh4qMCMH2PsP0SjapGP5LT0YegHHAyAPX7Y2WTy1puEjO1Uw2x2P4LQ30lITSU4brwFEKfgFBppegxxUkULDjQ5Itb55/QpYre8alPyMNhamMq228Z9bvdItQUIrnkWGBii4DY1LyFNOjRubagLVC25JNysCSpBXqDITOXyq9rwzozjgmZKYvTizYa5fb03G4Ys1jXSmk63NUwyw2oXEqW2xmFDYQG2hhYWvhUE0SdDIu/bBzsmyVhLcph+/coB8U+ym47VSD3OCqTj/iLGvz2rtPqxr0tFWNvQot8GW4anFa8OA9JoQMUkS3Euvi96eXl2HcD2+Dk7FTLTLpKwprVzihMkvfn/rt28F9aIWywRVOKM3SLvhZOywU+0aT0P68mwzO09E1d+y9SjmpMtsumeWGjkYlzII9yIgdX7FxsiJ1czo+715c2VbgQeaqgsPuGD5m2/1IJGSSdRiur6eta7dDj1OmN8943lw2r8Ohd9/Scq1kpmZ6fh42V8+chTY01zDgN32+DqO7WzrkP7YUQm5bvob49qELBafKQjtcSGtj0rNSYLciY4bTEnUXCRf4WSnOCBmVaSRKXzSF9MLUR82mT+WXVxhwPgm0QPVspjG6nlD6FOzvKBDcUVipIxOiIxenIxOio0hAR3ZoR9HHjmykjgoKOnqMjt6io5XqOA5dcMy5KPCmndYqEl1QHQrOpvZY9BopLZXMq7dMvy8a630WHX1YGBvIkRiNhyhpaaaqroKnTcs892N/GK7D6F4jVhDDukQzhMafsbFN+DrTyQqv5Ilxz8gREXOddmBF9S8VpW64okpgIIweEsyIVWRp2Smrr+BGdQTG6pEbWFNMeclexuW66J96Ff1jCgE5fE+a0mRtA5icoOMrSPdwVrIhZWZKqVrPEgdPfvrmh25qdCokRVpkmZiLcei3H+7902HgM7aC9t/6D2fNhYTQOl6txCId/NxFbaFpHloOrLURY92veGXv2eADGBbAOQmuwnVnbfpAqbAwYWwcSvoyXQuSNLRJvhqvkZ/PfQu75Cvi9rGHllM+hSfVVQo1hFUZl7jGlp9zB0BA4PKWyxOuAVzurbP2AC6+CcHpJHa/3V3Bni8X9wZFsH8gSENAk8WkLAsOmXLJOO0ysidMBSbtu0iSHddYxbJctAFT6S6YwQJbkzeulWU3vw1r/Oz8OFaLR1clwnKCZRaXqXN3H1frc5KcBsZV7lyLzvclb4/UQvN+pRuj9K+OsJZYkGRT+muKeOknrMPIppRcrcpxUAuMHy7GAkyIT/Lp+ur6FnWHbk73aMXFOZcOLMOjtyb1SgdJBqeF4qeSoGNNje3h8871XFZdrogC+D3AWeDh/mv2qAMPq0HOb45r6IgN7XcIMQiNeSw7EREqIfKTzc4G31zWACDOUkKzxTt5SfmRqFAFge68G3GFiCV48+U8np53ezdTWaKnJptzAe0lhR+Gw2n8iInHtztvxNQpmcXj4FYFIc6SzyXOQ7L8az9eN+fb8gKjG1VBZiSB9RbehpURTmc4AHwFOuEJs/e8+6/Xod9fX+f/7zoWGEG/XlZgJE9u0NFLmAkYucoyrln2ZP3vAuFQzfDVt9xLSLgWNOmC0/GqXe+nj50L5oIBXIal17jcAw3hY1wELAbkYsk6kSaPjTL2xxfXKVUYlrZevWiPET4+zMozcrrGhTW26H1/ucYxdbg6gLaRSt4oWtDuEheO6zppG+Gygln48ynA35Rwc+agbBapL8P1adLI+rJyt6Ys4aap2QZbWVA9wJI896RDhckVJ4n6klC6FuXIh5NOcVORthFI/mk7eI+O9RkZwiJtItiiHeyXxBVYNXt1SePAEv02jBPqwpWPH53LIZLGwSL/+u4lJCWsU2U6KpG2DhbJntEhYRaA2a1E2jCY5O4uT6fT9XId+/PZPZwS63hTI76igJ9P58EL9EmY9uNCDpE2CCaxt/PL2G89FB++MQQ7CavH8na+7rwDA7FbTBEmkve/B9RF5lwqPXU+73eb/sk13cqJFxCgysrEi467zcmDEJa4Do3WmleHJzMoqjMFcPdUry0PdH7tL0Opde60Apdrf3DRn8JKmj+0uYl9W7i/shOk3kpJiExslSWySj5vZT9viPpcFR553tZ+3vJukXXyea0QfFvdPxl15HmV/byZyRNLpEg+r7Cf9/7JEIfd8azv99dh9/LqHYnKBq6JzBSNLT2cjcpGpkTSK2siZXI27OB3df9Uy8jz2gk7kYkfsEQ2EZHOgcvMVFkiz6fLNSbWBjHm4jttsWP0YZ3dm6lwRkdIB8vpDasgF9KYkjQK0zE1HqMVTUrej9cxVswC3zH6o0jAU8axd0JtE7Usws6QV0FRqprdJIK+CbYiyXCKQN/I91cVR5UJA8f4tsKEeE30EZtgXjoRvcGdtbBeACcK/Wxr/60S5sDlMrj1WdiZ4ABzg9MONDUm8G+qDynzxCyInAFgHkKuZy2oxrAsuMK2YG7VgslVC45oF8yhWkgTMfYC9HAKnErsqScMmIMcjg0t0PVEaitlayaAX1fRO6o6PQGRUg3KeqSSQbQqPON3zIxrLWI2GOUHjJ14fU6u+HLZvbgRXpg+XwXr4AG8bHQDA/lKYRPxcjltdr0XPqgLyJKE94oLaWsxz9kygXRUIlDjSHlgoiqQzh5X9Vac9aUsKiW1TOlJoijkejrsNs50QJimzw9iEhKcbCAdVrUc0uQCcPoV5fJC0tuUwtPP6aJpVQURqgkQ7c0NnpayQmejJVR5S+dAUcxTUe5YkcZXlEDrSIV2tEQd3WBdwvV/63d73zMT2OfnHGHtRmHToZG3ft8/XX751u/37vVRygaSeGJeSi3vuHn17B27DiBUfIxwoZNBWm/5l1NaD8kb9k8jO6c7717Sc9on3iH6SX7+k/z8J/n58oGuu39T8vP/aKpzQ31LrmcG53kMSUQeXgpS9FctnP93YR3nm/+/PehFAYPni1uRlPZL+an75LKxFS1Ec5TrAiPUFHYF6MOPWidZXBb4sZ76yxCpjLEjkZHy/kyRkbIYO6jXZEZkSXDsOa0wWROZxFQKwhUbe1YrNs1OYe6znsbo81oBuGihAGYXjIiOPbOFw+f0YeYzP98+uxix2iZOyAxtkrDz7WnK8ITFXFVjxaHZ5ul+SHyswAliohIunSs1XurU2eHozNg8yQ3oE0phVw4tN1K+vOvYHy/n0xjbAZ21a9s7d+3sjsUWrbN5dLhqOTMu7YoPj0VtJ2pUqBXIYswWHk5L7XAa3rl8i+joka5tjabC+Tb49rtpbNDwsbezCRsyUzuu+MhRqiX2xDMfOnqUaluxsjcqs7WVE3qBgKGAFsGrjGCTh7GYHHpmQ9PwG5A5SLaawn1EpiecCnljgaIOki/7caocyZdrf725ZDIQsOJHvVLyb9f3kysWRm39KCIS6xL/wvA4il1kMNnrUeph/Ki+vG3HL9vq+OXr7e2iuuplr15f2sNX0Te35+N49OiwIXooK1Q/jao+H3p1Pn+rj6/vchT9WW32/ffvxfZ8acc3efty24+Dw8LbQgRmghwiZCyAT/Ttcv3yefNZfFfH4tjcru+HzXt/bg7H7jhuv8svxVv9/NmNPipcRJBiRXjr3x2O7Bqy72at4TD2L14QD4YeRaJk+e3gRpIR3jUh4NPTbbffvkxAVBfxUrYwyl4WbK8XDDiICp+O8X7/pLWlZxtg6jvdMoDEJ4z7WfyUfNkOl824O189dFiJUTtlUfGFVSdMJj3G8vyeaLiRCo7dFWJtdjQ0wBUMC+Enji8SLBMWvxH89BGBSLSQt6AsBE+8SGxfPUBUMvZGZeJwaXkec0eLEayFSc8lsIMk1ScaaTHdZJE8arO48DYqW4yHLTjKWSTQcbPs4D4qFcyUlYUpK00And8On3aXy23w5lYVeIsZvtQEL9u3fueufAODBn9W2uDedMGPpwl+Zgd+ZgdcC+ZnduBndmD58FfNDvxYUiCnb+nP7AB9SmcHoFEesTalZWwaZjxp4F0RTLFNhBjAzph7/x66PR5P0oVkSnLpLDGpu+Ilkbx+PJmG/5AvqYSvt0zI7uhHRcoWUlEsgyXEeYAth6iyCkN+1n1hEe5VZn8k1vP47PZpLGGfOIHBH1pMCHatHbxzXoR1yl24wWpkD/IVElxggoybpmOTi45uyWeYoa284DiJND2VZ6xXNgEsPUsbAaSHD9ri9kPLQDFSZtxVZ11enJdZ2AvUZPIyLxLnaKUnzp6RCC1zQhxgerZ5cmg173r3gHPRCnyavdBFKF87VWTsi80v3qmHpyco6scoxyevGxByiJbnY3bYZXflMtsz1QmbaT4JiAmJmtgl2yxMAEH6umO/yacesrQzcSqw00SjmyYlphMJJjplzLpphE6/MtQrbAiQ48R0t8w3a+hROazMH9giYFZUJr5mxlO+5cwFgnssPA2b/uaqtw7Wyi+LEJczHF0hEJve+nPJL5p+0OeTW3RQFnAbmuYW3MqCsaq4OO5peNkdjz6Xd43bJ2PC7qfBE9PBNnKV6fDjT0x6Pq7f/DlvIBsoO10LZjoqce9E1qrW0XORK56ZfTGBaRivg53mCJlesw+w/OvpkJgTzk4mdERjLiU7dYwBJgfJfCB7j25ko1Fq7A6xY0N3vcE8kwEX8yjYjDb1LOZn/LIFhxwKaUzwGKGQZ4LD9YlwGMJCSQ5ccOiAofIBHWWEPY9ZKMmy5qZY7MnycTDtrZiSiKbcdH9if9P4Fvh888v+tx+6X3tdZt8MeTTZ5cW1n7jE3kqgmzmh920ixVhW4CtYAvMojesnrj2Ta9vb1aKNjNDKlS023lmqI9PuIf4gupj3xbua73dyRJk2UHALJtP0i04apjqwHimMRZet7Q/w9bZiH04Sh/fz/jR6Zd92b05PoeVJDbMEnXXJPVRsIMU6jKSu50m4t/ls9IYwPKoyYtEanUsalrUe6Rk46vF2eHKZZnCcPoHMetq7ZfCYrZJJGAKqMFkndoku4+mvN8/IaCXsFIwreZ5Op/3gcgKWkOAI89Mg0oKyhOTnCbICI82zTSQsqTEcCMwpkpJ/8wjoEqxLuGXv0+352eNuVrCaKgUWjQuPZ29b++DGcvwuVDRLfsxhVthzypQad5vb1u7GVGQ2OLHlxglry9a6GzmRfZdg4Ea3FnDWzovfMyW+qS5gLrjFCeCnm1cSD3smWSWwWJrLIVtDD4XubG6KsWy5nLRYIh/FaZ8QMYLbsloMm5TNyMhLJFuTkinMHUC5818ijdCaQLKHaUk3n4wvxHVwTzjUIfxmXKxGBrhV4UgPa4LIic35cfXQG4VddhYZh9N2RYThwTwGxyGUcQKqMueBvvfH6+52CP0xYaME2yrPAnIqMnGZI+1J2hR0Cy8vw4WIy79ezthy2TghF1CGFhyPgQyfVvsh+hUz3dOdoSqeWIrQhIkZBe+sza/awPw17FJi1Ro/VDElZ6j1sfVG4ics9q+uFafs6GGVSQ9C8g797ngcroFImx89k2Nj0+83t30fYIQV9PcTRbAbj5q8gq3gPO7DJOJwkuoCGBuIu8Rgjo1n1kF0DKlo0pG0T5d/QQSUy1siIVBmVvfI3a2Ap4lzhsmnjPBmJJhp2jfRwTDNmjgsSXDdSNcmik+aRkxe0yUwyceTbzlhcA+Okm36c7/ZXd1L2Sk2kBGVZ/0wItGNlpZNBQHR2EHYPEnlQnQhljaId7OvZi4Bu3gKK6knqa6nV6/9qbLpekhQYGTDa5aF/u0fD/3r6/Z2vLx+/rL//HrZXi6vn/feWND6TQ0xM+mG9Qe1XdfCRk0kcZKQikHTpd2qIRIZSGGmZ+GRugBlOfOx1JF/560Jj6D+7U6HkUgLlji8T8Uj1/fjOHy9DRcPsVYgRbdclFju7pCSC4/1cu9iubHiBIXOYkJFaGHxmgRlp+YyL0ItDtbM1DY0gflLurxEdBCotVtBhHFXEeM3oN8tl8Ki3N3Lyu9I4Dsr/zYoRWB5/iQ1+J//7bBFtqf+hfjFkvbR/0Ygo7Eu/wxEY6QtGUccmYCTNu2fAn80zYtIOaQ65JBykDQtkt5LslJkrUjbT3ZsmJMiZNQQ6Y3/ZBSmaekS9iqnk3IXUvO3xgq4T95diM9UUz36MnfXC6IQivbhDzbeo7vpd+vA96fCVRP9/9axrPTkZcE3wVpnnr8c+lWbhL/4fVxUkUgzlO57JaX+14QhBWWrNYSbKL441p/bHyH0xGrM/cX3EnZB/HGCsqEaEmpn1Ca64iPFQzVspWvuWxwlsKQffp0maeYLOd+evgxOTKOG7hkmCXSlXwY3eVdDAv2Ev+dK3L0cD8Pl4tVu1jCYl3D4AsHeLMNSZFw37cqcSrR8mXACcHDQlolzjbBQNKe42BkDF4y2uJWAQWYngqX+KIm60Ra2jTK2dtHl7Zp4+WgL16K0VHfe9olVkbawU7nxDRI4h6j8WDFpi9vVmK6GGK3ljxMbAJeQ0z2VQEj5A7gnosW9GNhNSmTkQuEefL2VeJU5PI4RIqH88C5pMdRBmZs66148xC6TFt6Jxl1MFM478iO3SdvA5e2MUZFxqIfr66/RAgKU+w6rCVakPw9DhIcGt3LIOLyT2Jc5qvY2s+d4PLfwrsWglUD6HFwNn1yhmecglcic90P/fh53p3F3/XgehvMwvvQerQ68zDgOlqFMz/v++nwagUaVuGxesD955yi+VsUNdDkitXix940R06wNrtFmjCguV8djxbCMUEuRr5dAI66NFGisBvd5YhQkbsMUHW5zG8fheL3czuf9hzsWtEw4aY+bMqXGeuv3u21/PbnoogbngySHJzL0jTVeVO00uBmUCUFnKH13nGmtnDPVYEwiR20wA0N0mMhGh+Yzh2cbzOMcHWRf8vI4I2EL0iDd71MRc4/DL+6s4f7YJqB1n5Y4j6fz6TJsI7OH7SMTNLtPTYzDt37cBpZAA8EFpYnK3acmwqmDMFCOvje43AWOsTu+RJoNNNAN5wh/g9n04oPdno5enwjc3YoDlu19GmEexF0b3A+Ro6EJNE5slGi7mgYaJKVJed2nEK6na78PNwJuvmi6rt+nFFzDs4GJVc7YNDlxAWeAyGWHOz2aEPR9uiA8mJh1x0S371MB5nZzDdIGG0Amfn6HDoh5BAXcYhyZx203wyEu/eG8H+LXdQuDTJyJa3DBSTjWMsqwdUGzbYlfiXQAbsaJh/GqXPAuIBWAm3LOg1zfnTBI3SGt4ueX/zeRPsDXD7COtdMJ7r78Cf3EA0P+cJbj90puJNMLZYSh1WAPTAbIVCikVXDM64T+eKbXufPq4aVDBJvHrqkF6T9yAPwQUN2tnE6vZMoC43E3ZQcaxll1yhpXJuWS2qNeh+IS2n5e13grGd4W7HKn9PTxZei323G4+L3ehbLPRIRv4g7BIapcWsr/oWVXenU1jy+eoFogzS4ToOfXwfX3BXazUoAa+iAYkkCgANMeXHgrH8EdMDySEQRsmdSJ63zYfHGbfltITOsJiGG9jpwZq4952DAOMzLOY98O7pJipkzc2y5SaAQDeX8WdutnY5nlw38OBusnddxP6rhZF/wHg5b+QOo4Q5b6F8Sl6CvpU789uIhlzHmbqP22hX0K/I4SNnJNpEkCiSEJhkJPirl+HbGUTNLiPYMLcgpjEglf9v708jKM++FtcIssOhSpSRiatuj9qd++HdyMFEx5SBxacGVuvpzH0/PObSBYwa6wa7bOIvcwHE7jR0wy7JqIS3cdyRc4wRVkNpLYGXFEX/vxujnflsd2Yu6VgBXzOE7oCj+doWz44KvH2D9zLTRTqwS6YBYWzTujjZBIMMzSNsHBbXH3h1UVM0tDjRpqGG9PeElIcAzoho4ZZmcMxEfwbfCh13TNIjUKa4NlO2taZhF6HodzPw5cdOT4YDComYBFxaRz6ZErHTJ6rJ0DAGqAdJBry5aC9CkYBk00vrHlQpQEfNy1/bCCA1MwirBY0yuioz10sZ7JmNwI8EHBJhtZDxlRXrip3Lq+oeT/3/7xsJ9C1FdXMNKKiY5gRjCMKUJdu3Z01/L5Cuamq0R5J8s+Dtdvp9GjKVK4OU65dtNEU4wKd8NZfcjXod+7/ZlbGPRfX/xZWkSoEDADgqltXKHj0G93x+HixrZwvjhRNjzL1SLOek+F8EnY0WF9Eny5epOdjtepIHV8+nA3g4B3GceEqmJtF6+NqIdyBoW5z+o3vd3oR6gFBJmViYJ0PFL4Khj1Va1trNgA+/4yXWDD2etZL+CpWOJy94yzu8SGkDjxmQi50hDPJ3f/4ltmfYWfT5/6zdllJ8O0ELh7ji3QAYX5pIEwyl5nPSzStBIz5NTru88R7CeLJGTwXkKvOaJP28F7YKwm6/VdZkk9u1LhIaxzNhZJfRvGi2cgSQx1qtesGRIdoKalxHttzaAjoZ6/L2GPvxIz6NkidxdEXScxQBo3f7JFnwePokxiXJLIOmu388vYb90AjcQXTQIA7Qj1ueclbuCF+XMXkfvd2+Bf5pgUr0pUFM3y1iHIsJxobZHOoT8OW3+ta9cz+7VRDDPeS2szYAkOYctQD66G0DyxcaQyhlXmTe6nBDgZY2dWQ2pR4RE8Mn78O1YTMYNCGpw7tkoC34xxwGtHMBCPIM0Q8rUawTNDxFHM0BMqVwN4jugIcBnjsNeuPCM5hlXGePK1+87IhfBkqKITQH9feByRjCH3+QogBULG8NN8DQBxx/DhE9B9X3gEaoyB0/knM4EuhkmcMoHMD+RHAMUYGZt/HqMYYoyIzT+NADaMUbD5xxEhhaF+Wo1WWrI9cDBUq6shRVtmDA+MN3P+SYxAgDGQNf8AYtQvPN4JfLwjPQr0hZsiAYh3pKaxvfB8J5DwjngI58UPnnkCAYIXP/HaAXyPJI1wtH1temdpsDNwi2FxCWS2IzpV5g23cgKKHQhPVnfjcvXMmQFF3dgbTiCvA8FhLTfUGbhDfVxsvIQbT3jetovbSphnvlxNLr4DxdxiP341o2jL9Ou0cWnTakrxPanvW2y8rOYV37G+b3Hcu8s8gdFibLhi3crR+2XhLvxl5gn8xSffKCVOBa/5oO6bw4iyD5SLCjzt98MmaBMOsRXc8YLgZ8wmvvxLUDGsN06Hp4mV0x8SznRC0GF39WLGJWZjSWGET4fD6fjpOvbHSx/OhsJ0HmUio6iFXt817b6PGbe4wttIDxgk73b0mG4lLlVmdrWER3M6nE/HwQUWd/Ce9NHaSZEe5Boub+kCv5FMDZD3ek/AkrhEF5BIthQeRAYcdvwhLBpIHK1ppNsYbHX83IzGZZQxoYMZccncdAyZTNWHLI/gTlwL0Qx/FMYWPtt4cB+thpZIoojudDwOG18PlDBMJmoGuK7J9KldJb4PDHFqSuhlOF68/kQVDHFKrplK3Iyn42V3uQ7HjaMWOkiCkuI9Px0vp/3waX96+duCWXHRKvDizpI4F7k4Twn3IW2f1OFiyVncxhh3lVA7/hgrPMeYPxmbYtYYsyvUb7fnQReC7k7H/XC5bIf98DJ5c2hcuIG63zQue5FgXOyudoni2ti4c+xlfTzI/JxUDt54c3/W+AhwBbuEGxeMsDkd34ZxiShdT/sSDQd7JyWaukWGG4f+OuiPcCC0+1N1fGCg5bXASDWewayzPI+03V36p/1ghYXhePjNEiaKP17yXLcwW5xqFxKOoefvYr/U4jGjcSFjWaKVdzjuOLxMF8SYMZkwaJ3ogxYb8HB6GzLPNPQGu7x7ah7y4qQQvmnPG44IXzLhKNoj3p72u42H5IQsAFS+ljKYJ9lzWM11EGEcV6Us+uPFC1XCENpiYpIVR3cuPXFtP/m/ESP8zyrEn1WIP6sQ6cPPKsSfVYj/XKlC/F/EZfKnlkqaDk2GD4T/wlwz5p5JQLKne7z3Kv4r2EJKJso0F0m74+m8H2LdAa1ecC1jd9dikcfLzWMLqSCZXNg9oU2kSWfRni0E/XeraRntt0QFkZbt9xSVsAiDW6NxR7QuQUcyg77daDSEI0m+/FIltoQjd8HqMBATsVegmVKTdWJ6Vdb8K1L0pFNq0immnyWpkpo0SE36oibzoibzwjTZJC1ck86tScNyg8y64fuGbhdSmjXpnR+5k5IT7LWLL+B+q8mWqznlQRax1UqUnoWbWCby1fQIbsDczhDUDNEK6wWmB6G5IKVuHqQtnNlJjO8dCgX58ypa74rWu+L1Dtlc+EJOUF7PD+Dx3kBcmWKWqPScDu+u8pR2t7eWrzR6ZEUWg2KQjKNlMr6PHmNqjPwp+kgwPa4SRUCn43X3cjt5YWRMtKoSSetJ1jGQVcHSX5nA8p+O17HfuBlvyCmY1QVvkeg9nNUQjbOQEVKp4Hdx+Se3tL6GZQySNE2KL2mW+GX48MiXarsdJUcrV+/YSdjeQ9fD7JxxAYPG0Ny+mQ3ksP8yeIRIjUNZwyifTOqZRZZHWFZbnLqWgNXJmWKsnnmEDRCyM0u2KlMGiA7fuhU5EKS2zCJZlaQc2c9b/nWiKqlhraixe8AtZUHvkTFNp3Grs+2eeodTlaqQPI1eVSxGHvg+sSqA5wEGGofL+eQhJjBzbJeAmZ3G6+7o9HwsS/j2grwgkcDSzxL94o+ytGnFhMzdx1rY+wLFP52nPTC8e0ektA6c9Wgros83J+uMD60XmfMjCED4pxgpB4zHe22cozJ1fsHF1WHEFMdham9jWf2v2PH0PdCy4GBWqg+LfiDNutGfdyEFW2tZ4hYrRphQzxU+jONpnMwFxxQs7H6ioSWYED5h/gJs10SpaO2msnOnJFf2m05evA5TPi02NXZX9CJzxyLJ8XkpbYWYyYzojhBj1bN7AjMu1FYRf1F2vZ9x7J9xbPqQE8fGid/YGQEn0NJ/uU25PemnMXIKlUVDbaEXoxbGv1nY/Ge0/F8SLf9zosR3HQhw5CwjM7enuDuCRrlOeIfYuVP2ucvkjnbFz3jnUHZd2J3MizDOfHem18/kGmfjL5WwuHPOwLJbZkkZsTTzB4kr3NKxZGPhxlSYOj0QeCNhv9E9BqKpXY7ZtranVN0zUTPELzY3lT03kehgKoYViAazIe3ZCM3OhOx5IrxYgbVdutycziwuNIkF9LvvyDniET1XF1ZzikSVmhY08yJFPTVVOe5IJFyYYlSISQfL2NjLGNotWLyWAJ7dUcoRgvkUIVJEOHj01n70e1T/xIYBntzyXA2XlxNt4njL6itYg4A3UPYb3LPpz+jo17ZaLEMllQyXBaLBY3f2Y9/j37skkJDhKLwn/4Uofwcz6ikp67B09T06j+SF2l/a2v+eSyV1O5YSwhRNOBPhJ/CQ73DXOccmEoNYnfD31V1n9+QoI5calB1EkjHZog9x4liToPC44MhEkSioG4ftcLzu+r2bVVGJZhSpCTp5LDuQojh1r2uGELfoooQRVgqXJNiKZsYRB7mJq58jcQ8OSpCrS7Mv6WxLOsmSTrKkkywpLiQpLiQpLiQpLiTJsZXUfUPSa8mO/qpjTzD0FgMn0dj7BDRKBCXm+XHJXkoBSx/axOG7Xa6ng+uaQHQJPSJwRXhrw/zGvZpBP1ypPh96dT5/q4+v73IU/Vlt9v3378X2fGnHN3nr3rdD63KaYcIDDqlxdItdb44AZPRF27bfPg5P6m34fny9HD/q4fPm2+HQfO3r9lIOr98O79/Kj7Z8q5+/nr/L4fnFfTx4VjnQR04WhyNSDbm3/en5NH6J4Zks7dlWeffpIm3iEzp5WUXR2B14qjxNue2vvXs5Q0JiH47MSBuDz2GkDaNxGE7DkJsQYMO4Go5DkRYyAaAg7tNyBIQzmkXJERCjrTmQXPCmKlQ6ZgJ13zRZU6zfLRjFPKZ+pyCBTXcSHctiF61tLER8gqjAQbMu65rO0zcPmVVWdtZDcu8zFVrTqQT0dni6uRWqsP6YLoKKVrKi9a9wHeJ22Jw8MrxSVZDzq8Qm7nZ47m97H2cDieVYe3Ikh4IwbWo29Bh+RzHcXaGhW45UGl2ADR2txkT3MLMRl925mwYS4QhKuwhGO/JVQIc7UZDHw82kT/FeY7gVZKLkzpN8HsbNcLz2Xue0BjaVyBHtwV3gY0pcq7wdjqdDjBjABhFNTnUkG2D9NCL3vD99uLZvZQvMC6Juh3E59u61lsSFQEEeFSUm3sJSJiaXJ29/lBAamgieAFIYienAvFpnEzkH4q+RZa0hxQSHfykwm0CKWMIDvh9R2I35SPcoGQn+0CXMgWOO8xLCPD74td958KwSs4WXBaYjm0V5GFSo9S18J8wxKYzU2w7XqdD36D25wm3oiw5Pwu75efBdl1JALellz00Iwsvjxcd62V17B7CnYDeVhI+83R2G48Uv7i8reA5lBSP5S6mqewXCwt6WkgQtJQkUXRuKsvWKXC9VuQbEhGihZAMl17ua0xh4vedH7G8uBX0p7RgAP5l5oModNbu+dhnPA29BakuFi0tjdcBeDMnGxkRgoAmp2nzzUMeVjRE2S9R4C9LVmZfG7nLe967PCl1WBpBw4SUDrTlrzQltrBHnISM9jeygUqSRqBk3Ify08SYs95z/y6tFf2OV6E80zU80DX3IQNP8m4FQftZu/mm1m36l5l8HqLI9ud4GpBhKeC2no0vvjmkGSbsJpjHDRLPb0y0wwXBLNIzs3o4nv5lBV0HSUN4WuMJkezvvdxs/U1eqBBsaRllsb1M3mZPr8MF2TALHmBdBEQC7Fb0yf79i4txGv56ygTU0CSKr7cexP+w2bvoY85ThOMosp9+7qYIKkhXRhVhh4uXhk/OCNUzMrKYLgjBdTXdJTcdX4HDb0G9cCx5yHbJ7xTYkX0x0i1WkTX6sam/ox/3OJ1cRsDgpkY8ZvGpcSLejCrxCu3Mpi0gyoLGJFqs8/2AW9tpfXj1ZdjyhyvMAtCwZezDb06jzcEpamIoJE7awvLT3sLu+euHrVD9cuu1xeLXt2HHkQv2OEwa4bno4nF1Oy7KBfVQ6zNY2HKeotldaBlvRNIwVZDs4UY0/y/aVeCL7nJbkKcxa2TUHpDsqrnDp2BakD/elhnIyQvQhWF5JPoAka0yyOcWBdfKRGlr5hn0bK49kckaCDRmefSuPxBZ8wSZ8oSIOK9vjP+aQhS6RcVzIlGI/I+IocMWf25ZuMt65kIr0Pj1qTdNqjPc/LM33g7b/770DIua8MbpJjlno33O73J+K9EiaOxhPr7yUTgxZXBY4qzUct/MYdsDaTnRUHS81TaTJvqpQxVt8ALgGdzhuz6edH6u1R40EtjiWY0IhFKcwSDIKT1Q1Gxy0syp2AvEVsDyXl0bC8e9FIrYpvt7cOHHZQFspdaeMm6roQx5YYQV4p+VYXrnMA3xqQJZj6MKYoG8wRsVdN651Cil0k9ZpXPTrr5F2uCXOzjcY8z4JS3UtLgUkkGkp+NHiVP8kfq3pWSkg9XGLsVkTl/843BzIkIJZbkZOtoSuahMW/fVVz4Q3D5Yf1kZgs3FJQZEzjM3iTliTlIhfqGy/MHOTv/X7W5D1EzjVSeHVusJL/DaMLu0iXoUM73x4O7gWnTXrnKqzH3E5istzkgqk5aa4k6IglcKlzsPbIcKwbGuVPO97eN94nMqlXedNMD7P4yU9LjEr5SzYcDYAPirrgQ0F1eojv/pdcVvYsNrkB3E6b3jf7G++Ud1AtmCOfAvyvZuEcn3feXyakCwqlCuLJm8AP4uPDkkiiz+8n/en0U9oVRCRSpYgDKTMfNouiA26ZUyKQ2kUPgMUdzCpdaoQsXLsHH60+NwSDqN+soAtFa2LIltZYToDEnm6Xc83D89k9dewmFftARIGhCPXA/MIzH2bgT4gvnMvH2eldHnuecpppv30/vooLnYDgjkxl8Lwfp1z7l6wB3LcJoI979dhPHr2HW5t3CZMkkXSxDjtdV0qpV0yZGSkldtzAAhRMJZR4ZDYLMZr2atsSrAqMzzrWW4VDoh4CVbOuXHiMUwGUmbMJ3N6tMFwlAsq+Vcc6ITVAIJ8P1FxloncUopWSvqrPPA6/XnN2aEgX8TXQardR0kfwso3slEpIKDMMTZsI5wlLTHYPdobtLKaIFudSTrnMbw15WSt9F+avMuG/ONEIxN+nL9FiwPRCc6RGK1NKYVVU/LQdHnxTJY5N17yBDa2wOyjMwvUDXwmzJRnplu5F5rQfKHjcL2Nx8ir26sc4VRYmVYf0YQJQ6FFEm8fizuxcnIV6v7nYbie9sPot4crpV3a2GYv9NVNg3TQqeC4m8LJQy3OS/rBNi8c9mkpKmOYAQ0hIP2E2UNbE7nBh3437P1WVlBZY6fmebe/umH9DpLw1SXHaEjfYtTg8+64u3gTJTD+NcOde96NXv6ogMA5Q0DKnKIYuv28ex+2m96pj2lhptQARRJUUM/73k1TQdxh4nie9vvTt4B9FirQRKb62Q0gQfC+66vSrbgcWFpyumGXfwm9ztHaB8cwYMQV3YR0xMgHYBouuugYW8DxevpgMFGMU2LkEiOO2OxgoFECX0Q3noEMMXqHPhj0DkF0/jhOdwqCVzUnZOk7ZEBU9MoVWekVvXtl0rg0qMEEkhzSvxUtWASMFElIcDqYfhXmhU2ugs4eQ4/oTWvitzZJZLLzajLmag5Mc37ZcBCHGS36jkmH0HdMXoS+YxIk9B2TKaG3MCkTZsfl3An9VcM6hbMpTOXLSRR6C5Nfoe8o/hBm9WkI2mw1Ty9ZmYLmWZAbLIwZzYWjv5c9zaFz+iuKBAjaq4LD6xTLF6wjOMRBsypoVi3MGCsS+nLLP6Ev064TdCo5ZiKollTQjAmaMUG2qqREqFXbSrqNDqypduVCWDqVxoWgybRcCPor2pmSdqak+TFlr3SouVGbpEyVpJ0pWZ3SEZYMgWXsqwG70l+RLSHpLEs6y5L2qqS9KmmeJWUrJe1VSXtV0hJIWgJJMy85WmWqeOnLtEUlzXxDGpLz5w3t1Yb0YUP6sCHl0HDPQtqiDWmAhu6ChubZJA5pHzZ0OzSkChrSAA1Nb0Oz2pAGaGTo6TH8L4H6Y2gfI4zZLfR9Jss/dPMT0we+Jt0swIoP6cP/uDbaMjh9y7Ol09Qq/olfZtDSW7B32tIF3dK6t3TiWnrTljaAIh2l6KCpkNmV3l3RmyqujmbW7LDaoeS/IkOCtJaiUxmpiKD9o+jAKtpIVpX1ukEeMkWx0/7X7nHBYPTCgG0Y61Aw2KGozPc4BMFWV8Ho8oINsIJh5YWJGgr+HoMmCoaNFwwXLxgUHgt4FGy3Wcl7BoQXDAQv2IgrTH0Z23MFI74LhnwXVsadpRgIAONEDBzJBsGyeYqhl8+n0U0VQeYJtmOwe30aD27is8NkzGy4GXuNTIw/rjyc5lCQejNQEA6jYUyI4YBgcAjfFRglwtmztmENQSeSAAQqhv4wG8hacIP5yMCfzQvyX7F4eo2LYt2KwYRc6i3olibCNolMYQcTM4vc2/Gye/Fr+BrYWvivq87wO16H7UY30e7fDvE+2lax5UMr80irPNlnKNuOTcm85KYnGwi2CSoirT2A4OvNz/DjGARPBRIUJvmFlTkSuVM5ukQqNqNTy7CSoDTg8WfzQS4q+1lm9rPM7J//k0va/IcFqv6wAjYrnPQfU8lG2q0h9dbQyW3odSxXlnGyP+vfsnoXtqRbLJeYvhwQy/wIL5cDX2HXkZEtLpok7kNyLJwsooKtr7+qGfbv0jlxskkW9hwPx2PZc8sCZ+N4LKE+WNMu3uCtafKNTuaWrAvauAlEkjPi04dfQigLu7ApwmkSlXn7vHPMNQgPY6PBClez4sPPfPu8K7vnTdd+P9aH74dvo6raz2JbH4Uch+cvXy4vh4v4qD6+f3e9FoipM6ix8NxEjgufEv9w3O1/TG/yufq+3z9/fROHl5f243rsDtWtei++1q/1569fvn9V8/+5jh3s2Y4t8ttxE+BkkRi8Q2/Hrb8zITLDaL4QrxfqOfpVRg/M59v15jaJKiv4LjJxiN++Df3r4f3L87B7UZfj8PZVVK+b5tvr+PFRD88f/dvwdPi6PW5fNi/vR+nspwbW7BrbM7DRGhOd8jVe7AF9YHkFaVAN2pazDaYdKucoyI+p2PHgIDGcpJfhOFx2znO0sAtgGSuxSTP74S27jOyzHLa1UxYR6VFmHoPvtvQ4XgsBFHVbVBMt5fLvinOHnLX7PK/fzc9i9+rf1ZkKXac/ymMKAYn3eUMmN09/HsmOY3fmHlfl93NM2B/hWAkHSziBmkiycm41TKmylmJYJU6XhhnQRJozzG5GcpmcuWRgCqcwSWvizKWVsOSwNP+K9EIkT0nfMXlK/gl7cOymccbx39WDY+/sDjeNHS47HWWlmfiSZe1WsBaxUjv/Ckckx+kA19NSxXO+PX0ZXMIJJ8ornDnxbFz+4eoAMQCubKDxnC84jsOVDoMi4+3SToYvGgBdZWH7TVwaesfjgzJCu3kxX/3LPvX9sZTh4QwQRz7DioN8wQAAbQfj28zmOL7oGA5a2F5jZpsZXy6CQwt7s2T2sfBlI1S0sAkuYu1bVqZ8v3/SzYlcL7q1p9lYI4vOCTgwk3rAjBDbK6qEjD/ZcuNbpVVOI4cqPEjrksGKtsox5yOlhOuiwYK2yulnFWFpX52YqbcpoK5t7QLa0nI04sMkHKxgmPjiYsrXu4SjFXY6ZWWS2ETEw2V2e0/lEdtE5MO1djoLRehpVufpejrsNl5qvnEq3R5sozzr4ReZkQXtWgiYx+xolsjoMnZOF6c2/ywtQuOL1zmsnu3dbx9fss4uIa5iedy8iZjKSG5ukyKrsoL97jrWb67G9X/BCLE1hHQP9wiOr6RdTFSp/EvUEQ3W064pWkA/98tGq2rvFRW549JTs6h0J4DsULOzwc8xNemZ7F4sM/LrxMBRGwzGW+8UHle9pbIZ8QzRTJ1t3SzigeotbdUoTO+NCOFyWj5QvaXVrcCgrwnj94MT5tOPSbvpVl43F2fY8Ndw2PgWQDVud4l++ngddi+vXq2/bVuxn0rhlEZ63qc/fPjr1eHjbwjrwH5kCLDVbSiV4PBbEakrzRkEbXgbVCVMfWzEPcsZBWz7yvZbhUEDiqgSumMKdY+BneNTSadzZ+1G9XweJViI7g0Q2wWlRC5Evtz40hfSuu5rlW1f2pLBehdWaSaVx9wrGixyIa0NW0dqR7PnxWW1tdsUc8C9ifE+JFg9XPnxQw0plHLFxlezsnunix+ZcuS0VfbUiAgjQv6jB4ZhYzcg5vRGEztGTe6yItuwFAXKkt0nGy2ArUkzi80j0sGRquwe3aK7Tz1b4tEilzYONBYJyZgjMDH2GgsTxI0ERVPC0bzYbZqFCQyL+04AnBabVYkDy0WEhiPb7tCL0e93vY8pcaxOhthFIpgVrrn35MdcJNilKV9sdKFVY3d6j9iaGYLji6xs97ES2XFRW3J8gZXNrlHFyDQyJiVC2mHHuTj/LCKnqsWdsVzx8VA05vzLFIsC0TYIPtKKdl1wNAxt50YyWRNdqShQLO3AeRmx91Ym5HS89rvjMD59uGaeaG1XgEubo7ERzKfojxBbywLSQt0hGBh69gVeZ5JO+6KRpVc0tuz8o2nLRqaefSfVdUQR5k+NFuksrB0rpsT2krn3B0lZN/4g8bVFntx9ssHy2i3c6zv0ricdrbBNkFjfoXw98WiR7a58dSxflzlHo88uKFq7w3pIk2sPgblzgyHiCwwJ9+6QDJbXbk5Vy/uXV8tGi1vZPqC8f3G1cLi09saMlFKtzc7c/Hnqzut2dWhsq4yxUE0TcQYbDFv1R4i7DMj7vkMwMoulbVrm37G2aGgU2w1pi/yb1pYNTeLOlh31FDKmhlu7uf6gw7BsSvlj5jYmAoqNEl9dlMG7UzhYYVu1ySI7uBuIR6tsawaZ2ck4Jh+ttH1+ZRk9Xalp2g6b3aF321sK+5nLTJLjl+E6MeeG6H47DZa9yaM0e42dp/OJ8/yXhjhoW3p8wyGDPVMo2mjKXqj7ZwJuAPuol5G7efWxI5RyzgkPWOQc4SnXi4TH5xkV6ufJBNNshx5llX1ZklQ0y9JevSqq6lIPHUlg2KlKgwNWPNlcT1NEA23hr/G40ekvUYjhPtlgGeweOrLioEsmQzlLR8vROETahtoiukPzXid0PzrHrySSqFiDhxp3kyDJcZMUBTszBCJL1Fa3kV6iKZHIAK1tHy+zoIlkIruztl2KmFWYngKr76x7qmx/wvDkRVAMDW4q5sqPnx6Y3M4Viw6ObRXmxwEswcgSaWzNmB8FsCSj09jaXPOxJvArk9JfJlzqcPaIw0Vn2yGEVK4jsA7rh2sDxM8h8iDy5YLjWNuOYcRSyZAMT6XtFkbu5gzR8HDaAaPY4VmZl9PLyzAGfY7LzkkyPCzB84h3Yn64Ij4aO4eNgXKlxkPn9i6vInHidbkgcm41PiGCyTsFg8B56wT7I/HQ9IwcdD7qi2saChsxaEonYun7JoVVIeFx7QpxI1kygWrtbNWaD2sgqUiv2ugMmb8vSCw4g7VdRSyj8IjkXOg/dZw6Ox4TcRSRnOH67TR+8ZAVdnt6rq4TsWs8UZNsS4/DKmAH1TyhCFNhB0vzs7QsFqIebNOri5iiWY/tL5xDxM0FjCIWbhFJV9+SH59t5PdmiwXzbTf6rDPJ2F3BaMbttp91DMe48uin7eBtbNss5SJREQsxJHqmsej4PMPmTxkS0RTbtkAE8ZaUCWfXxpTEvNCMB3aIvqVd48KVtyIWVxBJd3oWHZ1d2LY6RyKaXRuqmR+pnWWi2bWzliLW+2X9gZcGUO4U22EFqmkWMSNLJC9/S358niHBWa5YMNm2NSTya5UswXDGa1tyVFukHv08ns6ny7CNxHKk7aiYMtIYphZ3OwiGiJtGuEtMvuT41Nc2PE3mZ7Fc2dCesVMpkSzWyguMw7d+3N6u7yc3GWFf5qUp3I1hAptUjtKSH593iAnMFYsm3TYf8+NjlmBgmNY2Gk1m0ga6ktFa2kl/GQkyrUyKW3cCsU7MkM3l7lSZbBWBp/ZM6L00zkHlGuxYhBV3CCTJ8X0C8YvrAsEOsbF5MmJjp0SivWEj8mR++XDSY3ESmrEbZ30KdscXXbrmWmWNHRRj9oumjSkRTNsUDBFfP5hMvkMyWEgn1xjZdFmy0Yo6icbI1GQJR0tb2cq7jUX40rNzezq6fDGNHU1hHpOFFsEXnbLhZ9HxpYSZ4wyJaAntPZ5f1DfLhEtnXwFttskzC4VLZucFY2C4nFlw71o7nsSUM018O6Q8g0V2fNFg9jVHJFg1YW/fSL/6tFC0bLapLfNrMxapaN1sWKeMIvnTE/FxeDo5YVdhH94yHyg68RBfrv3h7O4BO8Fi6Jxiibc25b+w9PgugLnhPKFgH9gQVJkP/2exaM2kfUNHIkprj3269vvQWFF2LILZZSJKx/phWnx0riElW65UNNn2oYtUK6zKRefOprKW+fEkIxguo3P0oiozOSPv7vLZkXLmz1G8jlTTWUZIRKK/jo8ZX1OYnsyWi1bVOv+NVWyRvwzvXuNTKZ2oEE8Uk1qaJ47GPMNfw2HjkQyUbLhLNIhm2EUGwrC55ifmtXAU0bDpJ7ghFfX6+OGXGU+HkNVU2ZZPGbtG7J+uSP7bPx6K96kdumxa1RX902Y7PLvDQULB1VGQ2rBZKZh7jFqf5C0FUhx2HJpbalADjB89gJFKPAeRwnx+imnGWhYdvYPCX6dGjisWmJm7UzpQL3bMuSm47D3iTa7Ih7vAbjdbMDApkuReGQDuBbtLLDEaUr+cH5sz6icCz6aD1ysj4EL7p5kj5JxRtBnWRru+n9CbONDTGJzR+umq7Jx3gDzL6+O4cSw7oM+F7cy1yW0HmeOQOR/KWPQ/+T34QFG6Fdi49YeGiBOv2HRdFb19Y/icI459apDn0xgjCle148qU2VrBExqlisJdaNM8g57sSFsZ5SDmy3yUeSK829m5NOZAbYyJEXHLU6MAYhqnXpQIH7lXILX3+o37yqDcXb7AxqEvMdyZUVWaCjjbA8SvNZhVyZYLLjSH8rDK3rC2ZHSV2eVxTYSnLUM0usRa+xKL0I6tzYt7AKR0iDi470c0BZcCtbwdoke3bNDyrYoDZrvDhZLPrvd2QGZBYXOOisg+WHnU93NEH9pghcxn3F2nL+w8/KO9k0SRCR/YvXlkcugmZabmBFxg9za4eWzMysis3qb9Ed+2TE0ddv7hbjx/VKMeiy6aXFdm8GUaY4KRG/Ziw1VMTVRMLwq/m4rVrT7aD8SYk9hFGofe70IvIduAwqf81o/98Tq4kN0OQrYSol7743bvgtUEvov9Zlw1XUZ+YyI4lNfmXdVoq/lrHJfo1k5BFJV5YFOv0KXEvro6Djai5Na31PiM+JYVIWyUhHm3aRy/fwnMm7R0iJRILObl+N+uAQobH1Q4kj2J+f/+n//X1VO1gsnVOrHknp6SHWRlxkmsVw//iBYZ4txft1+Gj+upf9OscK/DQsTs7B3Hu4/cuXfKPmnqT/fGsO/1LDX/OvT7q7MVhZ2uYjLuOkoUm+ihR8fW0sPEzU8a1epcL51RMg+7fvQo4B9iDsxrAHGfwgnpYDeXmhRIjf3hRex+ugG9+73rYMl6CY2FRd449NtdKBBt/Zp5M6qVJ+3Pu34TbCzhhgfpRo048EnJ4VqJxnH5IiZjVazsAJYblpQKB1kQ6YqCpYaP2nbwIsH38Sws7lTb4d06sw53ljczu7gr1OCbCWtzLQ14oDY5cZ2JKJ8FAmfTpsSsY1Gs1dM5njeXzetw6N03dxRWnnk7ywtjsKJGqcmIKgRSP1yLwYZHs6IzVk2M8dzow4QeCDkz7fobSkRJ6j4uyVyQzPFmCjetnhCx5zFtcLjtTNBkJmgXU1F4oOIuKNS8wvRFMY+p8POWwYMHvUFMLSDXjfvNNMK3jHWviM/1fn9y7lkBQW1ux+y4NJdOGzaO5uY6P9aPNmxiZFoNsUfF7X/Crj+01KYHKl3p3Amdr/Q/rCX6DzYfpT1o+qcznwD3RueW6FTgEmkeY1q80I6j0VvuF266pVN3K3OuTMMv09xL8N4zXdVzOqjDriumhWNuM8eEAnu/njZP0mmtVyrbrrT+3A2irgvNiNfDg5UcYHe5nkZH7coW2vC0MwWGK76e9lvPjSwlJI5oMbL59TRBS4Z+G3A3l47l09Z5AfTX0zfX0oWldDVl2msKn5hzl3jx69XBA5XQqvjZFzxXD//sC/6zL/jy4Z5OeH9YX/D/oHbg/7Zt4X7nxt6mRTfuzP0n9qiG6dnpurr8/Zdf+vPuU//Wv39aikp/Gd6vv/Tbw85tTgRTGFXC9k8N8bT5ZfPLeN64hkKD4gRWY777miLTQzzddvut+xjb0+YyPZx7a+MqSToiy7//6lv7523987b+5592W/+8U3/eqcuH33inBjdoyx+WITrzQdEH0mKmFXdJHyr6UNMHUnW05zva8x3t+Y72fMf6kfd84oaBwYU/4X5P3XbT1fZpcxqHT/35PF904/A8jMNxM/zy+eJWxivIN1itjzSxrZ7Gq3fBH3/px+tusx8uv7RFIab5dyIM9ycJb4feeeiyhuA9OrbQMNl98vOeKHuayHvuNgdHSAWFSAGtE7eas7RTRRwXJLVG71XTjVmTKVKT0qjpsNexWhhfIv25Cq99vuT5lg6vdNrofPGaO5DvE7582I9j9y3w2kigaWTOVw1po4qOeF3wB7491Po8cRgHTZh9n5jbgwR2PIF0D1DEXUi+PcL7BLYtFx3bjmQc1mw1UlCfZsPqTU4fIn3HSY7pO05mKa2FJKWYbDdOOp7MtEbwTUXKnpmr+TYzF0sQ8qV5VrzZCgOVrFnz8jYr2Ai0W22zvjVNt9lkKYz+Zi1ra1SoyXbb4XjdPe9c6E9ZwBbVApcn7NzMYusUk0faGhljrqYjIhg1RYdPMLUR7URuIt/Q1DV0rVqN3emipYtI8fkuBMy67p5dvw9pap7i0HkgK5BzHQiHZJ0tcwJIQ0gK8JiNz3YP/cqwHdDzWJ3uaXsy+ieCHiOjhPZyy14W7VwlWUvSNDb8E3KxaON3phsiplfaHaYL0y0dRbPMFjopy+Vf1pmkMknXLP/+jCz/9FXpw3+er/ozsvzTC14+/GW94Hsiy6QuEiFmcxexpUVvquh1QkdbsTdNQ/y5rndnPGpTH7jijf9ZkfVcwID5C+jczhbBL8O7bxgoyPlRcakUkOaiz8sG8kYoXsQOm8iLyNPter5dPcFOc3Re0UgVdGfZ/tgj1kO5hAGltGtEeD/zpqXd4hlPGaM4IQXcYTMxM25QosIo0kX3epZTaHYYZ9eAwOiyoUPFpjUXnq1jFqYPrKYDLU+6z3JJ6QPdOpKsH0kmjqTD19DoLSmmlrRz27BNSN9hq5He1MIBuRgwy7RWij/QX7EeMTrAeDhs28RhQSYzh/fIcbO/bb1WfQoiWQwiCZcrLSKdo1l1KJBljAQfDWgWp27dV0qMOg69F/grldMrvIiUnSXkeeBP9BY54E8t8eKXTRUVRI/L1KpNL+pKamAZXCf5wkqtmhZp8f0vHew9NdXYbAddJq/g/MfOJrOZMWjyzPmmaBQfdDrEdYytz3KL2BsK6wt8eGJMrwTjkodS0xxa8TX3kSzdYxmoZCYZ352OuKE34DrZAje90PP2KdUIsyxgr6yaPEHTojFvgGDZCnjF1qQwTYfAjDGCloBlAeuFatI+plEdHiHy6DiYLnmXrc8/aldRFjV8cNLTNW6EMcvfXYBoOOt0p9VtWjSo22icBozsE+YVKpPgsBZC2ljzsgpVLh3HdbFh1YYsbGYsLgDKeNZIXYSE3d7LKv2EZ930dm7eHSkGwUZt4g6bOubEahhk4fRCyath2B23u03vcWwInJeKlFRC4Ooi2wfBwtpBhjxnlC5o2d5TK3S3+V1Dp/gbfyC/kTyfLuFQHLe7t9321u/dRpYl5M/IqGveHZ+duoAK0hpxIIwcY3NvcaSGQgkVRRAqTLM7jfyp35y9pjESqkCVUB/Pp09Om3r/3pG4fw7tpC6hWGfx0U4TZQGhSqbFwppI/eeuUNjst0tskEVo0DVgog+CWRScn7XluaDqooV7DhNp2PIizPBlgQv0U6diFhqwtpUFLMYVmDiHxHkEEVOQAgmrElf98+nT7vJ0Ol0v17E/n71LsywgLQRFFEWdXp7z4LNulNDGEpySr9OPfDu/jL3nWZS4wFvU6UN+O0/8lK4w2OtYyOQxjxsJsnD4O9hIyKsgXuRGbASbHK+MtZWuyuTypEwEu3ayzOzKM8mM3eQYFZq4yZ9PMWMDlgqXIrkw46G/ege6gd3oTaKE4wOKL5OAtsI0ieAYuB/WluQ+SAquWql3SuGTqpcUgOB4iQmGm1Qb3cwUSlUmO2Yy3OkpidpJdlFqmdlMa3fcXXe926usgZRAS2gmIWjxm3fHCS7kSbUsVyPICR9y2Dlhe+lhdt8960vAu9Inn0hIDbrBtpAfw6S7itRd7AVTuxbSjaQikOdbxKWT0C9SCfjCJMvVvgKWbvvcK3GBl2u/33sRLxhnpfxGlXIGL9dpC7lhckgBQkk01fDD0rGiEEdHaYCOovsdaYCOQhMdZZA7CuR2dIQ74YejTUyJrNGOtE3HSAGTj+DsQpHy+7yoOwRmdCln9zqM/cZV4e2KM/Ybc6bwOZ57dw1b+EZ/8IMcPfUmYSykTYVYZ0kR/6yUdpPYNpNbe3e8Ou5RWUFdI8lvlBXns6zsVGI76HCmS0gDDxImpPE7WTldimIl8dzeitYz0c9p53ZMR+p2/gk50gyYWHYAXeO+ox1ilpIokBDqwaiCfwHOIAATBBiCquU8UQbyKlV3zqHenAJ0+lWqEp1GZ+QBmU1C4pyUsboCeAG9MuetLNgY2WElp6sI5UQAGmlCz0EhO2eyGLvE4CWKXDM2rOWcFKerOCdFuS0LEharaPdTUvEzEO8BbFeWMzTEm2o/ItT4v02MFm8IDAPpOSJRL2CLhqTOJEQ1QmEbYLubZSbpp5GK6AptLqo60pIkPRHIJZc2ezxrGHNMYh3TzNdwFb07YpwiEkYrcsXGV7V0SFUige51wWBlSzvKLXKj3I5ksLql3ehNRJqMpyclJGYroVkjEjfqxb37a4muZZnwLi4nNbUhcOsL0A0qE8nZy3kYD7uL7kzoxpHq2mkfk0d0tLtcbm47D5gQYGRhTTZ6bZDpDK4yKB7sJE1juqYOXBiuLWhN/a6PModjuBlhhy2WZTBckpS/eanIuzhPlvgeep4o8TWkvviREeIUXXZPyYpQJQ3jbouIi58YAxBttTYPGO2RxlQRqMwwxzwIIN+yOWB5czRsFxYxXP+9E3ntj0+3fYzqxBq8rTMvMY8c8i6r2RizbE4G5TdsYPpwofjTuESLUAeZOiS2vRlCHRIyhTVGPv2SwdQqvkbpxmQWLfLDTRFMCEs1JhwmEYq9uV9o18IeERwv+n2c3RiNE7M3xWmUmphJ6qEsY+/4ZXDJg+Bmozlk8Ak98fIvKGmgwAtZrlxq4JUWmJbUhe8/SAbd0U9CdNoCtgVv6NGLw+4OklwEyahX3N5q79zNDaZvon1oYs1cJUauDYePFRPRmvCxj5dTjLvl8BYHs8LQFUesTPjVhUwlEL3x12YUlRcAdrpE5Gm6CXHiOEUVpnJkSC6rGa6n4OICjgW7QWEb7ET5AibZY9gSA9FbnNpEEBkcZuXHXEZGUjevE15o23v8/VYY2HqutVm9Du68KpiFZIXV4PzwfvCWqROQ+NhDoMXFHV9cntmygVCERDx07zfRsFv43SHlbXAiiAoCOn2YAhTnPhbMsnFZF+tMkk+/qUh3WOUpiaHfd5vTy9ifX3ebAOxh97j0JwfruIlp81vAtykEpgpdB8Hsd18G7+FKuHIJN2u/8+j+nb4RFUFkGlYYRczdJ91nUTsmntw/Byuk8BYSU9C9bIW62GTh6haqw0gtSUinLISdEw6XwAGyJ95ulhznlYYux7rAuIPRWUGAOjPjThKBpd/Vtsgfe/uQGLcsCogtSsg79c4NoSDOq5L4Yjj1HtxcwTx7hUHVkxg3EA+XMyOFN0nzYC6VDUQPRdhPuSo35vDCx10XF918ynbsK5l5rc4C43tP2e1jKxmGUtKPunGzWALtFc/ZWyOXqsnhSdjHevD3c4y23zqhkcOU2PqbL5/O4+l55za/qGALefJjKlx7MQn1YVAdbHCp2FEkLzl1yCbJx9PcA75/2nsxxc4hl87dK5NMJNAOUmZG3SaB0Sm1D14wi872S07tIjt6+CBKKEtk/ADaPWSrzFKLSWiACKvt5IMk656LlLjuyGR0uggei/+waxMHxUUE490X2HVszjG8NcOcO728uJwWCrP4pSzHlRFiFqu9OCISHhPue2DhAUDVrgQ0Tx3t6+rPYvaceS8D8yM/NkDgMFSVs5cj02VGgIIP/eZ1d/RgMdDLwibqIue/XR6TClYC5ACdFpnejY9Ecoiv5k3i1pnHh9gdj4MLosTRNqYI4jInpuShNHSikc8y1q8LhvpXF0OhhL1Dq7w4xiRyqvpxszWw+5TEfSkOXq90VeDWG8wmAw2LQ3/sX4aDp9EVbKKd3FiTqNHTvchtk4bqJrGttMRYO8zazv3KzGDSIi+G47e7FliPlCfvdLxOsKvYc7awZqzD9W5abtCqC6r2DCDUoT+6/nQBkwY/Ro5+6D0YP+wTleBBkkzigLHph3784qqBsmrQbpUUbJYUbZYYU3/o3zf9ud/sru5UVc5Wy/RDD/377nBzCOQ6AZF4jB8OsC0cm2ipxLAVYbQiNvx5GC/D5nT0COhsk11GPGAkbdydxt31wyuFqDrohyRW0JZ2HsYXt49cZZVgWwREEVexxcDx2CDR9qcwrnSn8DhEwqkxbOvsvROInwH13qPbsMP6R5Zylg2gEsKqxKHtd88UjcN13PlQSRsFoyJ1D3FZzoHsYH6Rz1GKF/swHKKuZwXvYobqQcP/MBxcQIewvRfDmRAz/VrcDWcSe9xtLuneeY0d2ov4dbhfGpb/t388+BkCCF1Py3dbj1TwOvRmOQk6n+VGnV1bVQfr5nimycVk6VF3F1rdmUKBw+tEnPLAE4dh9ErIKwnN7gqr5OFy6YNadOukRvp2Bwlc5hyixDZX+SsG6VNkm/GUJrOIE4rL0/39H/9wzWcJoe2JDlOhIq3taEtD1klDufGW0UIcU6sjG8pntKvIBalq9rzJTmNYMRe8kqlVcYSGbK4fZIsxcCryhLx+jI8U/34MGiA+BpwJjwHDwWPASPAYUAk8BsX/j0HN/iNV3z4GBbOPVOb6SKWpj1RT+kjFoI9UwPlIpZePVDb5GJQ6PgZ1io9UYfhI1YFW52JBE251ZGO6RRJIu0SYLA4l8wtO5zCEmdld6Du0KLJk+5Syz1UICmASR5JD4RGrDRwTPNKvCPchKXhhscqSQFPaxhVt9IHeVNKbSiLfkiGyhl6woUVp6MCbNtCED7Ea1bHVT3JodRradQ3tOtMzmoIzFh8qfYeeuaFHbehRW1JJLS2BsatpNlpa7rZjtUVQC/orRQunDNLbZBG5TKNgoFNRmd8aWlwG4hiWH649KAT/rTC/NaS5PC7TRxZc+1gwJ6RFk8TUjwUzPRbM51iYToCGxAv3rY7Ud1aWx/dQRVpNPtDjMeMTqUzmV6Nn4CliX4dRQKQS/riioeXdwh4pStphvDovLE/SNjrq4NgRNndwlQmKJ3GxVrx2bjOzkz2JC8sLCxsoXWeybhhxLvdDWQgbqp8bXlmknYOpK0vbrxJ3zt359rTfuX1pRNXZNsB9z/dtKoD03Epl+2Yi0zdz5EV2TOmUjatsG9ERG5nNxoojP6g2tG4yxL6HYlurQd5D1913XmLyWrvAuchssHx43jhl0i2kKsoLdU9i9sPLBG/T2Ts3jGhbzVJkzuTu6MeKGhgrYgJgbhgrS7YUuCCKDQS6q8nAlHxtJkLtu+OEl9b8Z34yTdiNig29dpOX9DzsjseTV9tbVvZZkblxjN3xPO58ScKC98jMltYHXXDsrmMDuWJKmTV/jICMbZHa3iKZivU4u+ruQ97vkJ9G72Fgg92mxr7sbTe+7PvNbhhjeHY78lFnntHb/ro7u758i+EwfPUnDJTbxQsSw5IIPjYWyztXcxtbCE/q7erenRWMrWegGA5u8LmFeNcOo0UPH/1+13uJCJiLZtIlRuUkBBsipHAIzIqzzhZ1+HjevQ/bKQB/ubiXaVtDyHmOwg4SzHa1tttKRlvikdy//y22x7mGmNH9XsLaKvC1MpCVO9j68/soVrgncEbg2F99+k2F6d8KzFk1C9rcxqnXkLtZa9sCJW8879o/DkNAmwr7iDOn9fIvjPUuCVxXEawUy5CDSJEqDilzzUpQQc6NAAxBPZW1Mc48TEQTClOQ4xhj7SXvm7tncNMMyp7xHW86YzD5DJkIhmCca2is7iw4O7zMn4sVkC0m8qGDgmO3Uaoz6fRF6rxnBLl9PnTCeLuJYxTnQ3O4G5a18ccTzqokhHvEKlDjQi14nNjLvAsaSUlc0MfB7YQtYexemYDCfV03j8M3F6GtoPZPwE6PwzcPJ6ps8irzl2vK4925MaoGWjV02dEe41iRlV9lCn98Lk4ebbTMbQXODVr49PrqJeSu+K2NS/i88JUUkk9wS4uQfILDxaTBDOcE48hx3wrubkY7zUITkLor+AOrRPoJHz6mkZB8jf62ThYhw0Tt60+V0IynrQehkgomyFgtmsq14AETGjMgXWys6hozezJ8bMdx4bg0ezBcwpZoCcF5Gmhqz8/nzoUTnqE1lFESf8HLuF5pqofyYkuYB8tUDGK7M2SglJBA0PDaYDqbSd755GFh7DgI7wGlQk83BQqaJLuTjMnJMl88QpUpceGOIcvD9pbHu1nC2ytRtROLEECATw0dqePJ9SJgQMWvLzW1z6xPuMcenZ27Wo3d1WEs1VjseHLp6Ur4UsZDYcRq/bC6JW6HJ8/8gN6n3+7C98ntuiY6NpKSL5KDKCXbrpTE4YJX7upG15bFbUxXNWUOWkpOMduxyT3TtaVooRUlZVTFCpOx3aQSjQ1qhQDwwtwOz8N18+ozUNgBfnof8/ImdaTyAtjH2yHGyuro2jyI0enp8+DyxClo1VuIcVpjrpU1rR8490YHg2ZQYdjB6ekyjG8eTw7uSMjXKJsA+NI8PbsHJe30UX6Y095k2DDX0jIgF98v/zJub/mXS4eXf7kxE220ZcUjtcpkpVXYz0yYfTlN6VKd50ggV0qb9nLcVY6+E2kUl2gCx9Yn/XnQ180k7ijlGQujhG3YAsK0SPe1gOHiN6IowuZt5C0Z+7hi5z+0j9kspl8ZKjZGUWR03Wh4Y4ZN4OhXQTNbE3owBjdtaLa8Cw5PkHfNtnjYt5S747KZziYSWwscNGNDj08RLbegdxfsLnGDSz5qdNYE3biC9rOQrBh+L2/BZwEOvQULJsIeBf1VUFsmFCsOxovQrwyChB6DARYGOMIWNP/Kt+YjgaGQKI8zReTCWXATgJS2+0MxJIXWnSkSTDdjMghMDynOU+FklIVfYSo/31awgCwMbaFf5fRJNswdNFFM9OCVItgtlJllJcL1HAJiaCxmQzLcLHQ/GmQMeZt0viyITEA8weYRtwOmE2cF+9iEotiG6eTMEBn+FQ2R1ZGRxjKNGJk5h7st0sOb3or0ptxJkbsk0rQk+FpaWmXuLN3SKnNbsZYF0oRb9h/3v6Bf0Ywp0r2Kdm+sESPzPXKZIPttTLfClCx8vXPQmP6clHBXsI/t55a4J6JldMaYJNkesNIGhqPKUP6Y+gDTWNvQAHGP2WizbeOFtBEDuOWnsro28Rh85RfKGLY8RrSNt6EkMokQHpdbO9ptHGv+xBYUhnqfDrurR8PSQf/WFGFkdKq+oy919MFcIFDaOA1Ch3RUaEYDH8+E8wJDKORcNXeK0aI0AUazBQqNg02ktRTdIMpaauhrntxKxk5A7+MHOiHGB/QYRWDjFj4/fLgYr8uBU4aqpkh2mUk3wa0LKXXNQvGyMLutaZPus9tapLakNc2xjCkVnyksOnXnYeyDzhgwNEC36jJVbNyXiQEm6S7BQacgfSNb3PQabH4yBVosPuPW+duBGnPDcONKvmooHaj4A4UjaA/kxCXajg8tY+IDlDy9lyLv0Ipd8Hf42NFVwz31+PyZ+Aa74Bz64PuNA1A++MHqw0l3FydacaZ1XkKXBxDpNRhUdwnDYHNImlw6ncu/7IPSFqDVpaWkdVtexgfsM7V3wLJt/BxWowH7nuHqMQSSdCOYUBYnl93giG2CcAtow/jm9wmxYCkxpr8Iv1+ih3F8IXYvu4A3H/Yp4uQRDJCdrq9uZFFgFJ7hqSRH2GCnExfKNMK3ndsXtC5gN9eV3ZGgQzkFDZKRpsrpvBzpuGy35XtoeRuQjlciwlqs6EqxYplsaPpM5auP49cww+aqxvpLaPe3Yez3rnKHDGpWFAU/47ejH6aGgXBJl7gUbMj7x0nh0iM9lFfCCKkSrBuBFTjrbVbXfPIpxcaeAXmEHSmFjtKpHXnVHaYIcnJOsFicLLu0CvUwML6qtEKKpGrYreBIYiKAaOKGjOoP2VEZus9hIw6UsMrFRTMcoQgjC6QUjQ0fcYbpO8b1DT1ednTpxokYX9xIgH7VYbuZNT89quIMEtfW0bsnc7b0HZO8JZ1A/phF8UnKgQlNV0k/02iR9G2TdtjOv2po4a8BtlBZl89DVUUweooifarhXUsvi3U5Dfh8+7zzaT4sDPBDxdoonVchecQg4ou0E0JMyL4icqKCCDqgdbDMM4dg89zvXAUqBVLIiWZSccpuZXXiemgU20B04ZJ33ZK2abnJn/0WqfJJsjfCGsmAv9qE8Ln+kasdOdvDtY2mpJErGSkGzzAYYxRydWEQEjbk06yzOF7LMd2gvo9R+1zExyFP45oH8UiucTNVeBybIC3GpXZcYWcK61gJcuKVS+TYNvIr40xBnKUHTIGbKXozpW6mhM2UtfFvrXI1E2wyoSN85/Wja/BB/qsSq4BJRqq+3ua5j9QU3Cv6b/94KN77J5fC58ee2lEukL01KeS62+zOQS9jCfl/wqxkDLUKrXRrRA8q0kDObYWhRxNY3LX3kSn+G+z9c399dUbBrQYTG9XjlGlhiQDuUn/uP/ye0w00RhOtGucKsFizU5u1ouQcbCZLzCJ2uzXdRCYCZq6Wur4fx+HrzaOVKBsY6FlsnDvG4rIbNBYk4U6w+vFYl9vTcbiujdFCVP1ioeExnvrLgKSWkP9aQe/F6tIesLtUdhlSE6m6MtXuMmEC6BEijWNLC9BdxliVrR7fWdLDPrdtae/W9p5Nujkd34bxOi/o9bQv4azDvYmBessQ49BfB/0RCYdnN1HaYwtfHh9Ih/q0w+2rZunb3WWiJLV4/OEYeHqwFtNjDO/n0wifHVqj3ZpW2x2ScvGMY9U9y9VzfrEnZWl1C8fChVsrai1SXI9p5Mo1xRVGS2SFTIUfiWCsjByUgjd2lZAJveQc23F42V2uw5ixM6F7lOgtTIMcTm9Dpq6HpkACL70ME2vh3Nr8RWVmIfYs7zJcrWmZGfnhU0OifxwJm0e5jv3xslgOIQ16bVNcNxGWnCzBwVVV2wxXTcxbbHDnpQkw6dg40EQsmY6D/UGmKmQ0E1dfY6LWAKIpHYYuhkEZPHUSFh9Cq1aGjvcAxNnOtDTU+s+uQKjz4KtaHuz419gC8+p+tEDY6M8G3ddh+Cb95setb2rXEISeqMQ6+4FqeAMlQFo+9SMYaBMsOkyqL/g4IAi1AoT9iRO2kGOee/cAZO8KG3d70c74UNOmerqNL7GidJtSMrIZogJf+4u3p0o4oSmUI8WA8uGO0cfZew21S4jYzqi3Pu/76/NpdEknOmxkcFjetdqjbRoTxcM07KeX4brYT17BCK5ocGm5VqUHmwCX5fucXVmynz5eg7Y3ZQmn0CcRyxpjvtk9vw2ueuLyjgsOb/CqgM/vMZ2tDTMXiF8vt/PZA95U0KnymdIyxzBkG+440L/y+dfWxnkehtD9LKsas3dj78cVOy2Bz9+IGTKxV2hJjezKChp8ssrajKilW9XgvKvLWrc2QoyFpaxg31ifAm9N/Hk8nU+XYRuZnBoeKIkhUbbscfjWj9vb9f3kWcPwLPksfWsjREhkMMWIx/eXI3t3fNGsGz4nOj5AHoXg6iDam/KEw7X12AjzhHtzD/tu+cyGa9InBqTLtT+4JZ01pDeXGKLiiD1d+31kXSV8bo92cXUAl86thhzpPnvjuuCY59eg5/apINfER84RpK7xSSXXZJuLwmuiWMOiM5+lMjlEpEF0B9MyYXGRz3+ZHOvSH877AVx9NTSjfEbN5BiL9GH75PG8QNZ3n54zS7z37B1cC4/pMy789uKZTNhiymhldj5dLsMlqJLG6DXcpVYl4n6ny2Xnd4FSOFKxIOeBKM8krWCD+sTd6fGElRW0CxMeyzhsTofzbu+tsBA2RRibYHYcMmGXjcPzMFEP+bx0EJUVgQLTiuD6UTOMG8qBgEKOHpmgEe4BOksf/W5liXJufKmMg2bOcvLJEJpNEAry4ggu4VF5V/g8jMO5dzdHDcF86wRNi7hU0tBLFlrB4y4357M+iJeLhlw2qZRkxih/m8kyIwG6Bq7ZbxwSxNsaCyH4oLrMeFvGeCAc19Q2xWiswdoPvKcdnvfyvMLeJhHQRiqQlDFaYiHh9fUbh4QLaXfUiBBY/eh4aCHtRkmqi4Sus94zzK94SfTKXsDoKCntCkfBC9fCtg4/OBRaMLsDT1fce/JiiSmwULaqLKInbu29FkCCN0/WhosBwO/Fh7tjJRYIUvf9wDBwcSw11VHZX9dlQjWdIeC6NPYQBNHtIgiMe94rBmnwps9+tUhT0SSmAQ+SWjCcAv+RkeCa2TTTZWZwHw8D183e95E2YDlv5YBCPDSIrRYihDBJVEhMfGJhIADg3jHQktjY6a7KTA/GBkCLYSOpu0gPxuw3YRCNh2wp7NWIyk+Z5BH5ieWABLd3DwLXw7aHMsn84yPABbG1Sx2pUFp/lyjuyJspR4fF7rQE8CgxSmpxsBL7oaHgErX2BObxZqfGgQtla8tYXnz9vRi85bqB9pFh4iOuKjHcBhHdlvze6mMkrHFo1P22EcEiSpu9VFF5QsfkTEURXrs5w4G1lDYZvyIcdscUUEXxe001w+rs8YUNIeWKVk7Vmz4yZUR/Jr+3+hiJFYdW4m8bEa14Z7dJo3L+znBwFHeZjhZ8Mb7iVkbsQVFWvjMNgmKN2n7sxVOARw/paBu0cVbLNdc+OVpCOUM2j984JFLSdm1TJ+86zCsI0riybmw7SkaNwrX3jIMmPbSkY3vGwiUJ0EJqmMTSSWyD/thYcM1s20fedRwR4BQslm2cyOg5WH+zOPjUmzr7Clex4EgCfZoeKLFgMIP446PBJbNfsLnrmGH4Llg026troids7e28hy8g2XpQzvvXreJNvW4caextFts0iIC8k1Dj5DipHQqre350MLRB7dbIXaS/7P0jof1pc8h2MaRw+t3edqfbxQVgVQJiR5gkMxHICJouWUUgVnv1/7+9a0tuJEmOd+GP9LG2g3pX6SrS2hiarCahJgEMHmTPmK2ZrqHr6SQyEOUe+fJEgZye7tnhF9FNIjIrK1/hEeHupUMhWYeprZrcYbtbPS13gVi9zgqMRDSuU8qgQEamrmSSy/aGsJeq4bGcQCaWtnoO0r+k5hFygUENEUXyvMhdgu2myzh1r934Mob8WLK0MBfyha28ZrXDC36TEvn482+VehxeC4A9z1nW9uWrVt/UcFFWddN2/bDIfwrONDUvf6wXdfWIyLkvYYO3zX2noc+bXSitXnRaXP0dE+/rNrXyXH2VmcVXvs27u12Qy++Ey6eNKZV2MNt0okJeakHNNX3W/Azes5PGdJMAqW8yCbdp46meS1mcjPHN7bgPyvuLXqaTZtOBzraCYpZBpmCXRruQNXqSsfdORAm7RNzozH3FiRXxeBtrZebtvnZh508Smfcy22IwUKWE5vEYpaac3O42TwEhWSFfYniAp0R65hCe557PJ8VvJEnUG5PYTg1sPqcz5oqu1KWSuT5vx51/9xpkEU6Zy5I65X8HhHY5wcKLlvy0sELu30gLy2aDnZPTvVocWcBKYi0TLoo4rto2c0qpTPhWMqIWxg2ds3vY3G78EV7ojLYit2yeV4EYYCf3PtL5k/ALnKgxOeo3Em3JPMTOv+dJRcN57CQeQTXJwkDX2eT261Nn/IpyWc5YLrSh46fgCNWFCHgm6rPnrk6RIvcg6a1E6iIZW0OxDG5dpKbPsI5f7GPw+LUb7/GaEb0mJyNvsHoKoUFx6xo8NfpEm3oPS1hOXV3kcaotP3sVhZIfQnrbvxzH3SrMi5W3vyskF1RjQW3aQq2KWh98u+X63jvla03ohGlbadaWU5rXMkwGl2wevjatsrdaB5OndjMCqEJTlQns39EzodpPE/69bjVVjr6Q/uQci8mS9MG5aN9UMz0bmkzjfMPgypImPJuszTSiN7gRvCq1bucMQVyCU7cSOorfbtKwv7FJtH+muX1w/6tcoL0tiKt0CWyYvyaFcrFou+gbiWZvx1DkuOxl9UduydyeWGuDfUhO2lJia5OhfTD732AnUfQwSDIBY64GrOJwAV5u5Kfl3dMqyKiW+yLLstHi9JNqCtPPCxJZ5g7Gfk8s/UQn6V0ukT2wd/fQ5bJoF82SFBY3C3J3Tz8D3S/CVQGhbrXgh0hfCrXKji4tiDNrNuODcPlnfRiXj4cHb7HLczojSytFX/Otn5t0G5flfQVA7oJ6BbFKGo6igt3B1arC5SAlkoUjTV8O3C4HiqMSrzUKGZTyvVu8FxulFnhzOGlCQew3SuNiWksdrPx4+XKqsjrIWKRJBErBGuOVzmjWRZTTFK8DfWuBoXHYqGHZaKlhGUNTYGgcyTvK4sFyQgQPlpGWUxBLo1MColqHcpr8q9hLZikyxfzUlGaCZW5S3KXQZ4fDGpbR55SOEyx33P0iZScsNZKAtFhqLZYa1Z9+tACBTVw/KiOP+0veOoV5EmqImBomi4ipwWw8E0rEpKNsZCSdWJjWQ5aRO6UJkRZdMqkFXrgGXsIgA+RJMhX8RNbvlEyTri5Pl1oOrYRKdT0hEnaCHA9ZktVw4mWOrkQOUGDfTYBrYvdfm93FRLiljAU1lQRmduNJzzWMGGhUMgPu78bHVeh+Nlo9madQ7mR4emVQDOhT5Lnf4KgkYNfnXs9kfEqmS4hDuOEpRwYimeaWe4hAfVkrZWdu2KfkJH/ySKplClUMLXc8iSGfLd8FplUP8+OZyp8KklLcNEiKoV+a8NtT8sv6EE35rpSuK29uppdKmVTc93jOmSzekHkDUy+CsWokwtxrFhga8+mh1cNMk3rqZKC54bi6zl5tAnmZe2rM8FjKAp9Gs3BMhkLaNznNG+tnmxnvV6M+VCGpUWMvw0SAkAEzz9345bgK3fdScnM5bEIAcem+UrLJ9LEiIUiKPM4Q2Jm69hRCYoUc5wxZ327cbx6fgwREuet/8xDjbtxvN2s/4jnIw5eCftk5+Wox5MboJRxKXrpS1zTsxv3x0Rv9Su5AlBoNJHHanON4Mu/PeEkVFiuBx5rqV3rah91qDA6ZhQy+mv50JDttsmULXgU1oeAZ7fRekr7AUVAR662Ew+foc1PTIxKAtD2BHzgw+B8cBhVYFyv4ixXcqaolZIAPWO0V9rYKl+QKo1Hj6lvjbltjfGq8uhpLrYZeb81wFFz7uiFyBne7J3aGb9kSAXwGpKjBRM+pIFUE2UAuaqFiiihTbASWGVdGxxoqLpnmMTw/9KeFYJOpF2PHbiED0mIQWryUFvtsa7MOHiSa6AwBo74icDX8qjdFy5LQssnGEZZZEE9ZWM0MMYYFsYUFEYQFUYEFXf7Z4rj0BBe5m9tp4YQqtRJqNpXaSJyWwEEgG61b9Q8OKcQQYroZVNAhUQ5xqhjHlRubC2pFEux8YM499yVdGugow7p2zpKbFsPbYuV1aKSjKlpCfy/d3okX0M+wkC5Dy3VJPBwJzQYDZR7t1NQUyQ3rEQZJmzCDVfdsebW+f+Wqm1iGl364syhc1oQ6UfmiLUd0b60OPBkMpgdie+vfXqWILLZjasDjLU8bClwuYhqY+9Q0Yo2fqdgx5YF0uZj7mEUmh4uty1G6Y263f4f5Wy5bZre9RerNKdAUogkLh9nOMXPh1Wxvjzs/w6mo3FCoN3iXzR0DBrBS0+1xz+fdA6EVjE6niet2x3UIMzQ6qYkHcSvv12eSPc9Xlagg0V6HYo9qW/iVxhfOTQW+l0x8aOGxXLSYZgj0+HWs5ylWkCtaSIX6a0kieoXhNAl95YR2b9qZu3JoWlT4VK4U0vRGr7YtTpzKLds2HsaZQxOJRpRSmPd33NSSXbn78lOqAltqj/7OoeK50Vji9aEvJ3D7a6O3uevQm0KY3yWM+FcOx/2RkZoS/uPvfkv4VqkT8/ITMpf5t4Tkv0tc+68dmHUyTPg/jMREOSexYH2Qify9Qox5iWE7tH6aqqN890NC01ziWHXTT5GP/GMVxl1fweiMU0KFQmZIfZzxH2f89OHjjP8446cPH2f8v+wZ/2c65374G8n5x/6nM+cii8gz9Haa7OxHei0XHnsSPI3TzntJpv1Hpoknenr7eifyq7EUti/305ltxfnag8xkuCpUnGgrys4uFlKL9/dKtE52IxCNLWQ57A+S/Zx4iG00R4paln78dc+kuaMZlYgWdac1P2afcjObP2/BAUmIJEW5eG5e1eq02/yUY18tWlm52HfXP2jQZJL+s2hlplGmDkU3ufWavEatQ9J+fYNuZDQntH7ANVuw6sZFxQRJIq1p/uc2n9QBkG9/0LWtcxucwWYvX3omdjK39RxNu+bqfsPKTrWrGMk1/eI1+2iy4TnM23q8ZwSI8s2nd7Su1hNszmU622R6R+tk3s102X1Xk1cw6sqCBV2FPrcbs/hg9TC8eyubSXGqiX3fvZvNI7BUd4vrXJqpA1/ju2An0yPfAdWi2UR7fSEZZX6YSiDnSY6HVZCB0stMgqLggBUcsII+v4PdFnoVn86cIGG8lln0JtYOR7fTD/VqOdAmlpkdDZMcWUxMpzwTih9H3xuVon8k+Mqo1u9HfySqwklYwO2/p8Kje/EjJEo6lohzBx3oiNkTtCdaT7gefkQHP6LDaHRAHbrB7xGv3erRUmkqTSevz1rJ8mQsnZrilgjfdN28PKmTOUUz79CrYQRn2VM88q4YUJdSm7nw2F73KpleHoZj+IqKReZAHdd3X7eH3XK9X96GxUKubrCZ5Qt32wZQZenC+XnhtZmeJBJuu8KymjHucyWkTWbZltPHXcC8PV1pXM0lV5SlS+lYZUdnF/JjNJqNIOB0ShsMqDVlWU0Q+bNTgmEqxpkALltcByhNCZSmBEqTQibxq0QpA2E68hcjUoqDwBS90VUj8zDcBogDYNqeWGzH48NO6sxBkrobBfWUngZnImWwqfQtdTw8bu7vx93j+Dx6ZHGl41kxHFymGK9Lnf/rm0+s4UGK6s62ml5jvZvUV86UGdgHuuWlVlyPBiQ29rA5PvplBNJnLLExl4zE4UbHKw2P3AzN3X51v1rfrYLS7cJdwjf9TNGb/erev7E2Uri5IxUf1k+PJdGj/qNHED4Rs+KT4ZoywM6gCy1P/VsejoEysgO73fS49/aL1LRFfCIsw+Oz+N92ep5DkNCrGLpvpANtr0TbC08QV/ZzwTGO57lTKck/g2fQ45mtiPKa2slT3/wU6UqX7YY30R539p4DnkhYMoWcjKf72o2ncb8PCiEqqRWWASJfjflbbCVhCG7zGRh5MvgQzgZXky8cjFmLM/HEnlzmbEMBHZbckbOc9sq4uDe6IkUzyyBO1r5uk++5dm/j3mwKFxqOY1aq6XJyr73k/VPyCs61Ku6eriRtP1OS1rOr7p2uBm2f0KC9aFjdOWvvgElQOVwcEeVf1K7nFi03t4WCu1oZ/tnlNtPvV/sX8y2rd+wqh121Amb4F642ap9QAp5lXL1rV52qT/G0Z0cnrOCpJarD1L6qzGzX6/uAmrOUJUZNqf2e1W9BXZFXy5J4yLBKJ7+VPI7j9rB6CkbSlS/r65lu4EmvICAWkYHXjMzIfnPc+fyF7hpOqUczc48VpKQ1tIoWXJWYCugU4mYCI6+diUDS2mGQvylR7NzisGxLQldMIx1Us69wYwKWIMIaeZfmxEnBvgvO23a8XX32o+SaTihMqbVsU4zlVbmKTLJg7D8OvudQ0nPfAxZ0zQzDnFQsixKNOJXRyDRgkTpL85g4QTgx6myxaPW2MvU2QHVlXWODsc2Qju63AexatFJAm/fnoePQzrg/b8MTp+107FybOUT0xGWjPM2m0A7rqaTYe93uMdIMCR/KyS5mLjHydhp+IIkLBx3gSszvQnCFNOFGiECKBHwLq71BcKQBtNjAfW7B+GDpNgbS5Ib0yxiNajGo6R/yXWdtbo6H7fHw+fj4GJyr7uUsIdksjQZVqoUrANbO9Cde7Zx7FlReukBoM1Nb7WwuMOSg0nh18wyt1svnZUB5JQM2c6roT1aDwmRNSsfseGZ/N6Q+QFZWY8lY2fe/Wt8v9/vxsPK3VR16tE08Z3fn7SKlZOMJRFJOR2lujHaH2+0xpexSOkBWQnnFA7b0/ho0kEQHJWXNfLvJ+3c/uLpL7ezFFt69Ssn5bOJ9MzJaT4YjwKh266lLEt+QmaVg9LdLOFwsejFwO5MHdO6AL0oksw5473NaTpsMdoBOWbw0D6Orc9m7u9LcevCTqaNHh1trPoIZvOon2nf/xJRLz0p0cFQ4/EDMCJ3BmHdqc7U/rG59pFpmE5DJiQdzdh4GNPZV66paIMRb47xtLTMiFXhgjQ4BPd7PGXrhDZYXx57BGFJw0RFEwKkjTM4Pddg3XJLbBeM0i6DbZPmzXF7zG4zivrWVtvCf12MFLBbawXkd2eB+2kuBrBwh6P6wCm8OatLhnlVmbs6Hzdbf2jU//zRdxcZ2uullZtZmKw8Tdyk3ns0Lx1d2S/UaTB0ukjZ8vllxtrj6ezPlkk+GtwHrlGYOzHYwiIiUMuzQZNJvDrvgOJASq5cqbyPYmFROA/8H7ruFXBiEwa8MIWewg3hfGED4XRKQDrvjbRRe6qQIT451c3/0hHy6XgpFaK2nc4ae743LBCyrEKV/Fpd4YnvTNZq88dYY/RqXjhqjX/MYo9Iv9tuE5C+KaxsSPdEX1JfqpuPfwL0DptEAL2jggTc4PkgVmvMOERJzJIjJFkT+IFaA4I+p62Zl0Sz8oJcZV274HEGneQ+MA4dXj+HtEfXt0bEenDAD0JMB4zwU/IC/wSIZsOoGLJIBr8BojFGaMqA0xalEYwEa6840fvA6Q/8tuPPJBdMihj4Fe7XJ5dGvtyoalyOOo2iDhzGzMLINTOs9dDI1P114d+G5A5eudJ3wWAM7Mf056zlJCXNybmJK2kyMg0PJ1Z+p9OY2wOLty/tBar5nSpZYoMQqJAbS3z7gr8ziYZ5D5c4LLiquJS4hTBBbJ5gptgYSQ5vL7X/tlE9e4aB5oGcO/ftwZJlU1JBZcuCAXmj8NXbzebN7eqX0PnxdhdTRrtc+N+vsuN36evVt4T7VIpFxQKaCZsEPLIPTN5fjdhvHNhbyjlxhI6vAxlBhVVVYVRV2aqMnx5qoyHqJ231lCbDMe2XujWWA0yswjlMAm8UicwM+P56fpKS1UzN74nO7abtid/hy/+l2vSk+r5Z3n55vPz+X+/tm+fz16bdff/tyt62ff1m+PP33L+sn3+eQhZsBQ0hYyJvsysty6z+QJkrV/M/7X58++UKlnRvQLxZVYqs2+ogF4yQ5r/nX9W2oeFBIyc2M3qx3A9NSSfLtHZb3Afm6sygr3JOqVFg1xU3t/73HCCFRi8Nydx9kZZaaVV7HC852tuMumavvOnXFPLA31GGXOeC8jerXNO4PwXW5cPwg+6aXzgqyangotd6tpgZ+Xo+Hl83uy8/+Xts3npT5PAz+8LD0iwZkEIcA3KBrSQ8PS+/xZZR92uGmqRXIIITOmxFXYyqSgobXB3K2MEuXXCvM0s3Qp1zDkVJy0yIMhBsWwCOql1jMD6Q9FB9xYkw8fXFnCYT60v4A67Z5wUHBM3McmdpoEUJcu420Wm9gh4cgzzH/OrEdTKMyPdTUuak1UkvifU0/icxNP6/07/lOBPUUKad4BfanFOvs51JNMWKMIZ9+XqKcwvXwEvUULqRXUFAZkWdMOIVfvZdeKiaTwrfIKvV9OKRixqj3EUWR+jTBGEWiKKLrl9mgvh0vdIl3WuKdlninJV5liVdZ4lWWgBxKvFNHkAF2COViOZlWA2LnJtrA7HS80yvrI34fBitD9Ok/mppECPanajHAXkJ9iTmUWHgpjhgFvkVVCtOu4UGCPzYpZU2tBao4xwPB1ylzQYEkOieYABXee4X37vgtsEOVDOor0aXBBKjw3iu8d8fbgR0sc1PbMEcIj2MeEQbcFDlgEFPC8ZpgB1PC/ChMiYrnNGYCXawKU8K0PrBPv425zKRCMJEqLHxHPATfMhURdANgS4WaWkdXBEgntgtHaQQXRUqOYB7WzMMyDBXfwoSscV4k4FVM0RrHcAy41pi0Jm9CuQacMo7gCb5OhXKTQEE3Yi2UKInnG/L7RMRwFuXreJdgEJPfQn8uSs6fPqAbmC01Q5oJsZc4tIivA1GuOVtYrrPgBRSITgSCmGgML6mEzGMZEROWwYWJCjOYP079M6F32LEoM7qBO0mDacMAtCnVYP40mDaG3FPEJnGx5p0b/cFh12Bq2Z2b9XSGhZJ0NE4U45U9yhgzCR3YsRsl7FC8gzI7TErDfKauRyoFDXYwexO5aInwBb6ei2Pw6wxooBuJyAYM4uqaiHUk4EMYxDboqAbBTiJCAjtxqATbYIuJ3RLdM/WhKPZuekRREJ4uFiZ2SxU+Ey+CQcxwR86IMRwYxJxngrA5b8y1wLFu6LrJIuHrmOqUMjTFJEx1yyDIyEyYvBITX9F6za+j9USUibA/7DDu9JelKfOUqWCQERPKYWH2dpi9HbZcR9IEjmGsbYIpalJX1/B1dtiaiAJ0eJVdyw/4OkaexZQdPd0cRQO93Ku4GmCQNfnUVSSNA3aSDjtJhwHvyCaBC1UcyUxF+UkQQU+ccf+oMtEyAVixBVoJvEEnSQAuu2ULsMoQdliQik2mxybTY5OxHINEGDbOOoBlFraSaxwHq9VXMkUhCuf22Ft67C099hbjrQuYNJJFtNgBeuwAPXaAHjtAj4XfY/r1mH491nvPWl6sdxZV9KRAYb0HZmaPmdmTjyRiPLUyX5PsZHU8vkU0xuAYltKjGyQYwdTqMbUGTKQBE2nARHLC5ojwMTrMcCDmz4BpM2DaDJg2AyZJNuqO1jElBkyJRECe0WrctSxEjwNowJQYcLMaKn4LrWNHGljegR1pwEQaMJEGTKSBUXgcLgMOlwETyWS5MZEGzJ9cEgEm0oBpY9QHOCYyYOj3pS0esKENmGwDdq2BXEsLci0tyKu0IK/SwuTwML+KxYLfLfjdPEEyMUUn8miZvwQaXZ1F2nNUGNkrApGOHmNJy0QnFxXtmVojqfEXBC8XpvJscTjClgtTUSZw6Wo+0jLRzIWV+1hUlcimoxJpzDWkzF8Q70xrSFqUlr0isrkgtLkgtrkguLkguunqT7JXqUxRpxItkTNKuHNBvPMtKpa0bPFpkuhb3duCNPpuPb3Vx9Gy5XUbfbdWv/6u9N2p/D7L6rO/y8THxpWXh1rLal+m0jtAFAEbgjF0Df3KI9H2PigFHVRc3s7a3t+b0oZX6y+B/LQkL8wIWR8eVmFF8YUU42uiI++NfBD0ZzyAYDSwbEsmj2DlHLDLD4Ro8T8GthKvxFwwlFOWvr0XI4sQsQx6Qo/UvA7zKOgbkP2NLgEvZxHPHe9J8Wltx2Rii8lFMzfH+wc/HbuUGuKZbIyH3bh/2DyGiU4udVFGMT5DduKmQMQW7IvRJSXImBS9Pj2+l+ogiVOcINU7YlPJboRFNQuZjuQsiHgd+E6uaml/WD75lQbOI6caIKDGnZW+JZOj3HRS7BMMTBDExoWjxqKpsWhq3DZqXDZqhq0Zt6ZmErpW48ZRY4XVuEXXxB7Za67UCHYjNuKgE1ipRBVi2klbfHp9eXT9jUuPwiIwLw1xGru3pgIEKQCRmhSfE1MF+9H0k57d9GTRYcIO4rQ3aZ/fPYYbh27jiC0DtVFGSy7SGgVPGTPNRT8Z2YyTvXg6Md4XBf70TcUJEmEVWMCFYZEoUELQ2CId/B8GL4BLJyIUDEzg6xZHIMjPw424fYTkGzgPg3EGtaHiBMOJS2ewayLM18DRMZ7MynPiyQkBYmKYRCO5AwB2I1OrwYnEA/E/vxsw+M1hwByOdx1YNwejy0BzERCXANkiSM2QtDfBZQkEjMBXVMyRwUaMgjiEKS7BCeb+m2tu7rW50knXN+HmXu++OvdDfUPaLO/uduM+cEIGlyEhVW6eEbo4bL74nMxF6VO8JtLzGbrtNK3Dq92AflflbWKIGPe9imo5QwF82DyOuxN1fVAXqi6V3ZB5nsPSS8Zue0n6Yv4Jg6iMH8YRxSiQSKiY6J3mSnntVsxQ0su0VitM0TZ3y7uwylEWS5a2mjKDlyYxKwrp22AicN/FdonNBFvI9FPdkLiaLTOP/8P0OzxBTjuR9ypcVq7J4pqXs8UkFbrATO9gbgGzDRiwZ1CfhzoPbAakZ8ShrfQ7E+WNI51RzNIilGFgMhf2s3OaL/wPCLzFYTYetN8uPPbNomJ2PEehrzlhLYtdzQhZWagpjjDFgaU4esSgEQ51iwwxIMRAThz1YdgmjujEgZw4fhOHbRitIW4Rh2S+b9zFQiUWXEmFVK4OpCSh/jzAb7ccg9evB9Bj2PwS4G3wtYHb+q5kZ05Ye6u55piEU2mA3OzejYdlKP/RNA7LwbRcL5e4mM2gEE7DX9gWuZliqjniBZmb5GtNpM84UfSFvNLMMJXl8GrdQYlhqpzdoJJOXhkyiB4KQENKMGms0dJNNBbWzS2kCmhdXu4a5LQ+jwH4ODhDVyfq36TVU1llwKJ3IVjxoYZ+/hAXpzD8gm99qKF/qKFPH2Zgpx9q6B9q6NOHt6R0XqeGTvzwmjS5P58e+WF39E/KqpA6aLpUP2CmkKx3QQToUvHnx4n6caJOHz5O1I8TdfrwcaL+OU/Uq/LNI7Ds+yJHP+zBnspU5DeuzFkMZIlcnkkuOqLhOFZMkJMoLeFRQp+GbxLWJJrJHHZil4QsmXKO90uA0nBJJoYTheQ84XtywD4LZFp2a38TxeYozsAagOmveX7E4Y4h3vu4qLDebFHh2XLT+pvNZnemBXBgemYEeIrHJs9IC7DPkPiGRxx305atZ9p8WO4ffPzLYY914g5W0NLGrWfUKM8tRNJnbhvMsnMtZgKlASla5apwlXjTJV5exdQWniEWY2Keh+WB2zDbLpIY8EvRvSuDeDJ2lwm+XRXa8majxke/noTDI50zSfodBnKSNgNuXZcXLIYIA/YbnG9T13mrxRyffn64Lh+uS7TuPlyXd7suRmLDTEj8zTfknGFuAuxYRmUmJSHyfIw9hp4P/idXQIBzg/wt5F0xThUmTvPDW1wpIzwxehM0isucw2ECV4pEJWQjIXmIUYXwf5jwjL3ye/hvxvWR4OhgRhV2aXJrGG8GU7Kxg5PmglwWxmuHb5EpguQPxueArxu1AlO7selbBgrOWeMrYIEQ/sb4AfArq/T/6/quToE/jkSW6rMen1ryrAFnXfZ1sLBTP8n7nFU+OjWL9BSTNYa89zlpBAxTO5V7Frr+4QDn4/pu/LwKlH2lMJlWbjmuV7/40PXQKDJfkxJk4XagpCZaCHlMpeJbtp+horpkQ63Zu8zwfVlvXnwmT8nUX1rGfVi+ldMAOa4fN7dffHZTWUGYKcw52wmyBQpXv2IiUQrlzjIWY1XoohlURmwCiUgkYb0Tm3gLJPG9waw8IJKFujK5Qng7h8BHq+TcibCjrPmtv9olu7Xmdj9u73fLOx/K0DzAVsf17Uq8YFDXetVajGx6nL3/PA4RsT1CKp898VvZRErBOJMKc9lgWri4cGRzbuoqRuZyJoWksJsfjVvnFd3dBuldZSkVbxb6LIn0eZuucd8TN+pEoYD9lqW/WqLn3FL6danz8aI58bJcJfG6aWa+rJNB9arc2trJL7iyq0F9upSZm6qnk4Z2Pl+8xJjMvf0XC6R9xM/+EB+ETsSPGF5KrgyfWKKVnBZAHYFGChSS8AkrQa3uk8WdhEBZVQno0al8iAse3lnnoAsKrarhqvJBli7MKBa0kgNRYCBejq8eKnN8p4GdVj3WMQGRme+OSB73PIJhppmCDyzoJ6Ulq3hZoUuGTtJnkhHT+C+xFnFjTFWy4gWxaNIUDWQK03E/fj4+Bk6PLrXTLso+yGiuKpVQFY0op2rG/GH1uPptGdaAlbKRWEA3aTPQjnTVlIsiIcOTtvPVYwbo5U3JMN+oNJ08mwleEaMsxKtmiTLXK9cZ+eliypEErwhDBFOAQz3fKtCdLrzEciZGRN1BC7MG0S/47NwgIplTeSRiP3HYH1mDZIUlcQUFQz0Wl2A8AVtlijmAAS2u1qh2LsF6i+MxwcaKs5RV7xmCVTu3MSeiVc9xcJJJOA5vKCi2PAEbTR7RCRYs5yDVKNjz8nEV4iISxME+KauPX60FYsFFWyoHuddlGbAU9E3egA1Y0qANbX7ylL46R3vLwlRtChGaZzzl89Sl2hfn2Uw7PpVzMNy0ibSDC1a3y93yaTyEAnPVULpm59X3OGaFU1W5auRtnfB/Z4zF3n91g/vqsHOnsiXi+OMsxUtNb8QOpV+3QiTmWFQv23HU2yb2z7M25atuXaPzjgYalS96cI0mtvzLoxDJmEkVMoct7NLsCQvWa7k1zejgZh3snGXrPPZU2x0KKxIvvbSHbjywp60lOEjyNZNZYNwPl1WrM+evcDLm+OkZwaPXi9sEHcc3Uds61cWAjVkDbPW9LOtlhIRRiRir9sc1gzpnhzyoLC07KTdfycsZjfmlCI4TZBoHNrJ1DFo5aR6RaKkJaeYkFfhG4eEQmjBBYFx6YmKfBNM7AQ1CEwQZQmxh0FwiNkKbtS+6WVSFc0RYncfF7SgIwLUyEBXdI42giXs+eZCqzB6wW22O/lnUaydD70vjbvV5FWGF2RuYtOMNpatMWMTnoTCyD3bIxok0QuMlzKpkFgY3IkBr1IRp9T3v3KY/AAvJUVrr3NDncXcIkvIK6YzWWsH0ebU7HH1umHKhrp1M1mLSl8kBElwN0cgcZeTzUzASUrwzIDpLGwtOqE6ed0Pm5vW09wfDmVnWeG5QHNq4Kj0o6XbF5HAFLhPpkUlbm8CVGDJujh+iFubC+0kpA9ON1u98Wa4On0/ppN6iq2ovvXg6PBMa2HmT6Vtk0zgruq/n3SLNqLhGNk7Kw00/E2E4WfURBpnX0MlI6svy8dFXQK0WavcgFQqgKGKqTKJp5Ts/N+TfEKpKrScfUtP2Yt+hkixKV6fU/olqVy6N0N/vx8Py9nZzXB+2x09fxl/9IZOBfbnResb3oy/sW8lMFp0QExn8uhU8WVWlbgo6B8i3vrpff90+jfv98n70LUsqNLnNJiyrftdyVGbN8r+L7a6Rw5FZ9TvPRj/IGIMxlWas+Sec5hFBCDUh/hhm5MYk1rlUp5flfv1///O/QaA8I2OuV824Cjini9LFc4xBmzxZfQKKkX/mOWJRhZB2ss79CgE9Kf6cCYvD0vJ53C3vx+24ux3Xh2ApFEXj3hNo7cKR9Go68ALdGqPJXQjGqsw89S5kn1bv1HjZSccesLAnGwgFsFVuha63e3kYg8UkM5reJ2RN78tQh2ucrpeHYDAHmUhSaorFl4fx8BCk0hTSDqtqkKxA/U7mKFBy0lS1ueD17fblYXXrVZUN0lmJ95Y5ROXM0UmQ7kZs2w6Og+Nb+ygvDxv/8reQgUVGi3m7IMu+ZqB6edgEuhGl9FsmtCNpZhXSVsm9hgkxmN6RsILBK5gJJkBggd8w8sN0gFwgncFh48/tvcFKP9z6bvPy9+Xz8nG5vvVV0ytJcH8plH5FMnmmU6/razw++X2SV/tsn9LNHPx6zIVcvkx5wqua/v3NyoGMc5LlW5l61tOT3O2WLwHqKPOyK72rTZYC7t9eJorXet1sdn7OtU5d89eNMBbIVjQS0ug1KPOyOQZmasmJm0rEAFytk1ZedqsguFQWqqOK+F9S36sGD/7BO0icKbScMuhXzct3NnV5Ghkcb9PPC54lN6awGJMlk6wgYQg/VrG36jwuR6xCkv8zt5A1UMxQtpxAproxxQr9RXaCEb6SqLWZ4Y0a/bGgtnTT3zCGU7w9+Wp+vn1YrtY/Lx9XvqvRu6IVZZkgAHBI2elPs6rG0WPT02Jq+/Pxv1c/+3hg75JblmXsBeTsPS1X6/V4iEw62FVZxZflpMlXiwnCzM5L/+m4/c67zJ/Nflrux8PX9W785Tjufb+o0yn3i0LuFJPZU0lJhK51bkDeodD2TIe1VbqRGB3qnFT3m2KIgbZoMV2yfrtZf17d+224sYNhHu54Njl+PdFUyuHWfKSX+rp6yhpWPlUOXjobfhoPDxs/l6qThLKFvhSfre22t/vbh/Fp6Y+nm6UwzAtqne25TLKH5eEYZMctWm+2zYNdI8uJWezbTaVTLDQJ21dfAMlZwl2bCnNO2znOAsze6SdmM+5n4ZWOebb4NzDdzOLaTlCiD0M5Xr57LAZnv39ias//6zYh7uBiEkUy5KvN7cbbzfO42x4/Pa5uAwTUTbgoE70uMy8rtPvv/3Wz+Lr85N+wZUA1Y/gEJiZAysKdteW8Yo2zMak74CYmzkuC+ro9h0xPZpeH4y4s/3AMzkt/+nUMsTu1iWSwu183Rz+S8TZHTpj2MI9GehmJGiDf2j/+drNdbcfH1Xq8+Y///Mc///n/vxFOaQ=="; \ No newline at end of file diff --git a/client/docs/assets/style.css b/client/docs/assets/style.css deleted file mode 100644 index 5ba5a2a9..00000000 --- a/client/docs/assets/style.css +++ /dev/null @@ -1,1633 +0,0 @@ -@layer typedoc { - :root { - --dim-toolbar-contents-height: 2.5rem; - --dim-toolbar-border-bottom-width: 1px; - --dim-header-height: calc( - var(--dim-toolbar-border-bottom-width) + - var(--dim-toolbar-contents-height) - ); - - /* 0rem For mobile; unit is required for calculation in `calc` */ - --dim-container-main-margin-y: 0rem; - - --dim-footer-height: 3.5rem; - - --modal-animation-duration: 0.2s; - } - - :root { - /* Light */ - --light-color-background: #f2f4f8; - --light-color-background-secondary: #eff0f1; - /* Not to be confused with [:active](https://developer.mozilla.org/en-US/docs/Web/CSS/:active) */ - --light-color-background-active: #d6d8da; - --light-color-background-warning: #e6e600; - --light-color-warning-text: #222; - --light-color-accent: #c5c7c9; - --light-color-active-menu-item: var(--light-color-background-active); - --light-color-text: #222; - --light-color-contrast-text: #000; - --light-color-text-aside: #5e5e5e; - - --light-color-icon-background: var(--light-color-background); - --light-color-icon-text: var(--light-color-text); - - --light-color-comment-tag-text: var(--light-color-text); - --light-color-comment-tag: var(--light-color-background); - - --light-color-link: #1f70c2; - --light-color-focus-outline: #3584e4; - - --light-color-ts-keyword: #056bd6; - --light-color-ts-project: #b111c9; - --light-color-ts-module: var(--light-color-ts-project); - --light-color-ts-namespace: var(--light-color-ts-project); - --light-color-ts-enum: #7e6f15; - --light-color-ts-enum-member: var(--light-color-ts-enum); - --light-color-ts-variable: #4760ec; - --light-color-ts-function: #572be7; - --light-color-ts-class: #1f70c2; - --light-color-ts-interface: #108024; - --light-color-ts-constructor: var(--light-color-ts-class); - --light-color-ts-property: #9f5f30; - --light-color-ts-method: #be3989; - --light-color-ts-reference: #ff4d82; - --light-color-ts-call-signature: var(--light-color-ts-method); - --light-color-ts-index-signature: var(--light-color-ts-property); - --light-color-ts-constructor-signature: var( - --light-color-ts-constructor - ); - --light-color-ts-parameter: var(--light-color-ts-variable); - /* type literal not included as links will never be generated to it */ - --light-color-ts-type-parameter: #a55c0e; - --light-color-ts-accessor: #c73c3c; - --light-color-ts-get-signature: var(--light-color-ts-accessor); - --light-color-ts-set-signature: var(--light-color-ts-accessor); - --light-color-ts-type-alias: #d51270; - /* reference not included as links will be colored with the kind that it points to */ - --light-color-document: #000000; - - --light-color-alert-note: #0969d9; - --light-color-alert-tip: #1a7f37; - --light-color-alert-important: #8250df; - --light-color-alert-warning: #9a6700; - --light-color-alert-caution: #cf222e; - - --light-external-icon: url("data:image/svg+xml;utf8,"); - --light-color-scheme: light; - } - - :root { - /* Dark */ - --dark-color-background: #2b2e33; - --dark-color-background-secondary: #1e2024; - /* Not to be confused with [:active](https://developer.mozilla.org/en-US/docs/Web/CSS/:active) */ - --dark-color-background-active: #5d5d6a; - --dark-color-background-warning: #bebe00; - --dark-color-warning-text: #222; - --dark-color-accent: #9096a2; - --dark-color-active-menu-item: var(--dark-color-background-active); - --dark-color-text: #f5f5f5; - --dark-color-contrast-text: #ffffff; - --dark-color-text-aside: #dddddd; - - --dark-color-icon-background: var(--dark-color-background-secondary); - --dark-color-icon-text: var(--dark-color-text); - - --dark-color-comment-tag-text: var(--dark-color-text); - --dark-color-comment-tag: var(--dark-color-background); - - --dark-color-link: #00aff4; - --dark-color-focus-outline: #4c97f2; - - --dark-color-ts-keyword: #3399ff; - --dark-color-ts-project: #e358ff; - --dark-color-ts-module: var(--dark-color-ts-project); - --dark-color-ts-namespace: var(--dark-color-ts-project); - --dark-color-ts-enum: #f4d93e; - --dark-color-ts-enum-member: var(--dark-color-ts-enum); - --dark-color-ts-variable: #798dff; - --dark-color-ts-function: #a280ff; - --dark-color-ts-class: #8ac4ff; - --dark-color-ts-interface: #6cff87; - --dark-color-ts-constructor: var(--dark-color-ts-class); - --dark-color-ts-property: #ff984d; - --dark-color-ts-method: #ff4db8; - --dark-color-ts-reference: #ff4d82; - --dark-color-ts-call-signature: var(--dark-color-ts-method); - --dark-color-ts-index-signature: var(--dark-color-ts-property); - --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); - --dark-color-ts-parameter: var(--dark-color-ts-variable); - /* type literal not included as links will never be generated to it */ - --dark-color-ts-type-parameter: #e07d13; - --dark-color-ts-accessor: #ff6060; - --dark-color-ts-get-signature: var(--dark-color-ts-accessor); - --dark-color-ts-set-signature: var(--dark-color-ts-accessor); - --dark-color-ts-type-alias: #ff6492; - /* reference not included as links will be colored with the kind that it points to */ - --dark-color-document: #ffffff; - - --dark-color-alert-note: #0969d9; - --dark-color-alert-tip: #1a7f37; - --dark-color-alert-important: #8250df; - --dark-color-alert-warning: #9a6700; - --dark-color-alert-caution: #cf222e; - - --dark-external-icon: url("data:image/svg+xml;utf8,"); - --dark-color-scheme: dark; - } - - @media (prefers-color-scheme: light) { - :root { - --color-background: var(--light-color-background); - --color-background-secondary: var( - --light-color-background-secondary - ); - --color-background-active: var(--light-color-background-active); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-accent: var(--light-color-accent); - --color-active-menu-item: var(--light-color-active-menu-item); - --color-text: var(--light-color-text); - --color-contrast-text: var(--light-color-contrast-text); - --color-text-aside: var(--light-color-text-aside); - - --color-icon-background: var(--light-color-icon-background); - --color-icon-text: var(--light-color-icon-text); - - --color-comment-tag-text: var(--light-color-text); - --color-comment-tag: var(--light-color-background); - - --color-link: var(--light-color-link); - --color-focus-outline: var(--light-color-focus-outline); - - --color-ts-keyword: var(--light-color-ts-keyword); - --color-ts-project: var(--light-color-ts-project); - --color-ts-module: var(--light-color-ts-module); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-enum-member: var(--light-color-ts-enum-member); - --color-ts-variable: var(--light-color-ts-variable); - --color-ts-function: var(--light-color-ts-function); - --color-ts-class: var(--light-color-ts-class); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-constructor: var(--light-color-ts-constructor); - --color-ts-property: var(--light-color-ts-property); - --color-ts-method: var(--light-color-ts-method); - --color-ts-reference: var(--light-color-ts-reference); - --color-ts-call-signature: var(--light-color-ts-call-signature); - --color-ts-index-signature: var(--light-color-ts-index-signature); - --color-ts-constructor-signature: var( - --light-color-ts-constructor-signature - ); - --color-ts-parameter: var(--light-color-ts-parameter); - --color-ts-type-parameter: var(--light-color-ts-type-parameter); - --color-ts-accessor: var(--light-color-ts-accessor); - --color-ts-get-signature: var(--light-color-ts-get-signature); - --color-ts-set-signature: var(--light-color-ts-set-signature); - --color-ts-type-alias: var(--light-color-ts-type-alias); - --color-document: var(--light-color-document); - - --color-alert-note: var(--light-color-alert-note); - --color-alert-tip: var(--light-color-alert-tip); - --color-alert-important: var(--light-color-alert-important); - --color-alert-warning: var(--light-color-alert-warning); - --color-alert-caution: var(--light-color-alert-caution); - - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); - } - } - - @media (prefers-color-scheme: dark) { - :root { - --color-background: var(--dark-color-background); - --color-background-secondary: var( - --dark-color-background-secondary - ); - --color-background-active: var(--dark-color-background-active); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-accent: var(--dark-color-accent); - --color-active-menu-item: var(--dark-color-active-menu-item); - --color-text: var(--dark-color-text); - --color-contrast-text: var(--dark-color-contrast-text); - --color-text-aside: var(--dark-color-text-aside); - - --color-icon-background: var(--dark-color-icon-background); - --color-icon-text: var(--dark-color-icon-text); - - --color-comment-tag-text: var(--dark-color-text); - --color-comment-tag: var(--dark-color-background); - - --color-link: var(--dark-color-link); - --color-focus-outline: var(--dark-color-focus-outline); - - --color-ts-keyword: var(--dark-color-ts-keyword); - --color-ts-project: var(--dark-color-ts-project); - --color-ts-module: var(--dark-color-ts-module); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-enum-member: var(--dark-color-ts-enum-member); - --color-ts-variable: var(--dark-color-ts-variable); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-constructor: var(--dark-color-ts-constructor); - --color-ts-property: var(--dark-color-ts-property); - --color-ts-method: var(--dark-color-ts-method); - --color-ts-reference: var(--dark-color-ts-reference); - --color-ts-call-signature: var(--dark-color-ts-call-signature); - --color-ts-index-signature: var(--dark-color-ts-index-signature); - --color-ts-constructor-signature: var( - --dark-color-ts-constructor-signature - ); - --color-ts-parameter: var(--dark-color-ts-parameter); - --color-ts-type-parameter: var(--dark-color-ts-type-parameter); - --color-ts-accessor: var(--dark-color-ts-accessor); - --color-ts-get-signature: var(--dark-color-ts-get-signature); - --color-ts-set-signature: var(--dark-color-ts-set-signature); - --color-ts-type-alias: var(--dark-color-ts-type-alias); - --color-document: var(--dark-color-document); - - --color-alert-note: var(--dark-color-alert-note); - --color-alert-tip: var(--dark-color-alert-tip); - --color-alert-important: var(--dark-color-alert-important); - --color-alert-warning: var(--dark-color-alert-warning); - --color-alert-caution: var(--dark-color-alert-caution); - - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); - } - } - - :root[data-theme="light"] { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-background-active: var(--light-color-background-active); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-active-menu-item: var(--light-color-active-menu-item); - --color-text: var(--light-color-text); - --color-contrast-text: var(--light-color-contrast-text); - --color-text-aside: var(--light-color-text-aside); - --color-icon-text: var(--light-color-icon-text); - - --color-comment-tag-text: var(--light-color-text); - --color-comment-tag: var(--light-color-background); - - --color-link: var(--light-color-link); - --color-focus-outline: var(--light-color-focus-outline); - - --color-ts-keyword: var(--light-color-ts-keyword); - --color-ts-project: var(--light-color-ts-project); - --color-ts-module: var(--light-color-ts-module); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-enum-member: var(--light-color-ts-enum-member); - --color-ts-variable: var(--light-color-ts-variable); - --color-ts-function: var(--light-color-ts-function); - --color-ts-class: var(--light-color-ts-class); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-constructor: var(--light-color-ts-constructor); - --color-ts-property: var(--light-color-ts-property); - --color-ts-method: var(--light-color-ts-method); - --color-ts-reference: var(--light-color-ts-reference); - --color-ts-call-signature: var(--light-color-ts-call-signature); - --color-ts-index-signature: var(--light-color-ts-index-signature); - --color-ts-constructor-signature: var( - --light-color-ts-constructor-signature - ); - --color-ts-parameter: var(--light-color-ts-parameter); - --color-ts-type-parameter: var(--light-color-ts-type-parameter); - --color-ts-accessor: var(--light-color-ts-accessor); - --color-ts-get-signature: var(--light-color-ts-get-signature); - --color-ts-set-signature: var(--light-color-ts-set-signature); - --color-ts-type-alias: var(--light-color-ts-type-alias); - --color-document: var(--light-color-document); - - --color-note: var(--light-color-note); - --color-tip: var(--light-color-tip); - --color-important: var(--light-color-important); - --color-warning: var(--light-color-warning); - --color-caution: var(--light-color-caution); - - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); - } - - :root[data-theme="dark"] { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-background-active: var(--dark-color-background-active); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-active-menu-item: var(--dark-color-active-menu-item); - --color-text: var(--dark-color-text); - --color-contrast-text: var(--dark-color-contrast-text); - --color-text-aside: var(--dark-color-text-aside); - --color-icon-text: var(--dark-color-icon-text); - - --color-comment-tag-text: var(--dark-color-text); - --color-comment-tag: var(--dark-color-background); - - --color-link: var(--dark-color-link); - --color-focus-outline: var(--dark-color-focus-outline); - - --color-ts-keyword: var(--dark-color-ts-keyword); - --color-ts-project: var(--dark-color-ts-project); - --color-ts-module: var(--dark-color-ts-module); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-enum-member: var(--dark-color-ts-enum-member); - --color-ts-variable: var(--dark-color-ts-variable); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-constructor: var(--dark-color-ts-constructor); - --color-ts-property: var(--dark-color-ts-property); - --color-ts-method: var(--dark-color-ts-method); - --color-ts-reference: var(--dark-color-ts-reference); - --color-ts-call-signature: var(--dark-color-ts-call-signature); - --color-ts-index-signature: var(--dark-color-ts-index-signature); - --color-ts-constructor-signature: var( - --dark-color-ts-constructor-signature - ); - --color-ts-parameter: var(--dark-color-ts-parameter); - --color-ts-type-parameter: var(--dark-color-ts-type-parameter); - --color-ts-accessor: var(--dark-color-ts-accessor); - --color-ts-get-signature: var(--dark-color-ts-get-signature); - --color-ts-set-signature: var(--dark-color-ts-set-signature); - --color-ts-type-alias: var(--dark-color-ts-type-alias); - --color-document: var(--dark-color-document); - - --color-note: var(--dark-color-note); - --color-tip: var(--dark-color-tip); - --color-important: var(--dark-color-important); - --color-warning: var(--dark-color-warning); - --color-caution: var(--dark-color-caution); - - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); - } - - html { - color-scheme: var(--color-scheme); - @media (prefers-reduced-motion: no-preference) { - scroll-behavior: smooth; - } - } - - *:focus-visible, - .tsd-accordion-summary:focus-visible svg { - outline: 2px solid var(--color-focus-outline); - } - - .always-visible, - .always-visible .tsd-signatures { - display: inherit !important; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - line-height: 1.2; - } - - h1 { - font-size: 1.875rem; - margin: 0.67rem 0; - } - - h2 { - font-size: 1.5rem; - margin: 0.83rem 0; - } - - h3 { - font-size: 1.25rem; - margin: 1rem 0; - } - - h4 { - font-size: 1.05rem; - margin: 1.33rem 0; - } - - h5 { - font-size: 1rem; - margin: 1.5rem 0; - } - - h6 { - font-size: 0.875rem; - margin: 2.33rem 0; - } - - dl, - menu, - ol, - ul { - margin: 1em 0; - } - - dd { - margin: 0 0 0 34px; - } - - .container { - max-width: 1700px; - padding: 0 2rem; - } - - /* Footer */ - footer { - border-top: 1px solid var(--color-accent); - padding-top: 1rem; - padding-bottom: 1rem; - max-height: var(--dim-footer-height); - } - footer > p { - margin: 0 1em; - } - - .container-main { - margin: var(--dim-container-main-margin-y) auto; - /* toolbar, footer, margin */ - min-height: calc( - 100svh - var(--dim-header-height) - var(--dim-footer-height) - - 2 * var(--dim-container-main-margin-y) - ); - } - - @keyframes fade-in { - from { - opacity: 0; - } - to { - opacity: 1; - } - } - @keyframes fade-out { - from { - opacity: 1; - visibility: visible; - } - to { - opacity: 0; - } - } - @keyframes pop-in-from-right { - from { - transform: translate(100%, 0); - } - to { - transform: translate(0, 0); - } - } - @keyframes pop-out-to-right { - from { - transform: translate(0, 0); - visibility: visible; - } - to { - transform: translate(100%, 0); - } - } - body { - background: var(--color-background); - font-family: - -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", - Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; - font-size: 16px; - color: var(--color-text); - margin: 0; - } - - a { - color: var(--color-link); - text-decoration: none; - } - a:hover { - text-decoration: underline; - } - a.external[target="_blank"] { - background-image: var(--external-icon); - background-position: top 3px right; - background-repeat: no-repeat; - padding-right: 13px; - } - a.tsd-anchor-link { - color: var(--color-text); - } - :target { - scroll-margin-block: calc(var(--dim-header-height) + 0.5rem); - } - - code, - pre { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - padding: 0.2em; - margin: 0; - font-size: 0.875rem; - border-radius: 0.8em; - } - - pre { - position: relative; - white-space: pre-wrap; - word-wrap: break-word; - padding: 10px; - border: 1px solid var(--color-accent); - margin-bottom: 8px; - } - pre code { - padding: 0; - font-size: 100%; - } - pre > button { - position: absolute; - top: 10px; - right: 10px; - opacity: 0; - transition: opacity 0.1s; - box-sizing: border-box; - } - pre:hover > button, - pre > button.visible, - pre > button:focus-visible { - opacity: 1; - } - - blockquote { - margin: 1em 0; - padding-left: 1em; - border-left: 4px solid gray; - } - - img { - max-width: 100%; - } - - * { - scrollbar-width: thin; - scrollbar-color: var(--color-accent) var(--color-icon-background); - } - - *::-webkit-scrollbar { - width: 0.75rem; - } - - *::-webkit-scrollbar-track { - background: var(--color-icon-background); - } - - *::-webkit-scrollbar-thumb { - background-color: var(--color-accent); - border-radius: 999rem; - border: 0.25rem solid var(--color-icon-background); - } - - dialog { - border: none; - outline: none; - padding: 0; - background-color: var(--color-background); - } - dialog::backdrop { - display: none; - } - #tsd-overlay { - background-color: rgba(0, 0, 0, 0.5); - position: fixed; - z-index: 9999; - top: 0; - left: 0; - right: 0; - bottom: 0; - animation: fade-in var(--modal-animation-duration) forwards; - } - #tsd-overlay.closing { - animation-name: fade-out; - } - - .tsd-typography { - line-height: 1.333em; - } - .tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; - } - .tsd-typography .tsd-index-panel h3, - .tsd-index-panel .tsd-typography h3, - .tsd-typography h4, - .tsd-typography h5, - .tsd-typography h6 { - font-size: 1em; - } - .tsd-typography h5, - .tsd-typography h6 { - font-weight: normal; - } - .tsd-typography p, - .tsd-typography ul, - .tsd-typography ol { - margin: 1em 0; - } - .tsd-typography table { - border-collapse: collapse; - border: none; - } - .tsd-typography td, - .tsd-typography th { - padding: 6px 13px; - border: 1px solid var(--color-accent); - } - .tsd-typography thead, - .tsd-typography tr:nth-child(even) { - background-color: var(--color-background-secondary); - } - - .tsd-alert { - padding: 8px 16px; - margin-bottom: 16px; - border-left: 0.25em solid var(--alert-color); - } - .tsd-alert blockquote > :last-child, - .tsd-alert > :last-child { - margin-bottom: 0; - } - .tsd-alert-title { - color: var(--alert-color); - display: inline-flex; - align-items: center; - } - .tsd-alert-title span { - margin-left: 4px; - } - - .tsd-alert-note { - --alert-color: var(--color-alert-note); - } - .tsd-alert-tip { - --alert-color: var(--color-alert-tip); - } - .tsd-alert-important { - --alert-color: var(--color-alert-important); - } - .tsd-alert-warning { - --alert-color: var(--color-alert-warning); - } - .tsd-alert-caution { - --alert-color: var(--color-alert-caution); - } - - .tsd-breadcrumb { - margin: 0; - margin-top: 1rem; - padding: 0; - color: var(--color-text-aside); - } - .tsd-breadcrumb a { - color: var(--color-text-aside); - text-decoration: none; - } - .tsd-breadcrumb a:hover { - text-decoration: underline; - } - .tsd-breadcrumb li { - display: inline; - } - .tsd-breadcrumb li:after { - content: " / "; - } - - .tsd-comment-tags { - display: flex; - flex-direction: column; - } - dl.tsd-comment-tag-group { - display: flex; - align-items: center; - overflow: hidden; - margin: 0.5em 0; - } - dl.tsd-comment-tag-group dt { - display: flex; - margin-right: 0.5em; - font-size: 0.875em; - font-weight: normal; - } - dl.tsd-comment-tag-group dd { - margin: 0; - } - code.tsd-tag { - padding: 0.25em 0.4em; - border: 0.1em solid var(--color-accent); - margin-right: 0.25em; - font-size: 70%; - } - h1 code.tsd-tag:first-of-type { - margin-left: 0.25em; - } - - dl.tsd-comment-tag-group dd:before, - dl.tsd-comment-tag-group dd:after { - content: " "; - } - dl.tsd-comment-tag-group dd pre, - dl.tsd-comment-tag-group dd:after { - clear: both; - } - dl.tsd-comment-tag-group p { - margin: 0; - } - - .tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; - } - .tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; - } - - .tsd-filter-visibility h4 { - font-size: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.5rem; - margin: 0; - } - .tsd-filter-item:not(:last-child) { - margin-bottom: 0.5rem; - } - .tsd-filter-input { - display: flex; - width: -moz-fit-content; - width: fit-content; - align-items: center; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - cursor: pointer; - } - .tsd-filter-input input[type="checkbox"] { - cursor: pointer; - position: absolute; - width: 1.5em; - height: 1.5em; - opacity: 0; - } - .tsd-filter-input input[type="checkbox"]:disabled { - pointer-events: none; - } - .tsd-filter-input svg { - cursor: pointer; - width: 1.5em; - height: 1.5em; - margin-right: 0.5em; - border-radius: 0.33em; - /* Leaving this at full opacity breaks event listeners on Firefox. - Don't remove unless you know what you're doing. */ - opacity: 0.99; - } - .tsd-filter-input input[type="checkbox"]:focus-visible + svg { - outline: 2px solid var(--color-focus-outline); - } - .tsd-checkbox-background { - fill: var(--color-accent); - } - input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { - stroke: var(--color-text); - } - .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { - fill: var(--color-background); - stroke: var(--color-accent); - stroke-width: 0.25rem; - } - .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { - stroke: var(--color-accent); - } - - .settings-label { - font-weight: bold; - text-transform: uppercase; - display: inline-block; - } - - .tsd-filter-visibility .settings-label { - margin: 0.75rem 0 0.5rem 0; - } - - .tsd-theme-toggle .settings-label { - margin: 0.75rem 0.75rem 0 0; - } - - .tsd-hierarchy h4 label:hover span { - text-decoration: underline; - } - - .tsd-hierarchy { - list-style: square; - margin: 0; - } - .tsd-hierarchy-target { - font-weight: bold; - } - .tsd-hierarchy-toggle { - color: var(--color-link); - cursor: pointer; - } - - .tsd-full-hierarchy:not(:last-child) { - margin-bottom: 1em; - padding-bottom: 1em; - border-bottom: 1px solid var(--color-accent); - } - .tsd-full-hierarchy, - .tsd-full-hierarchy ul { - list-style: none; - margin: 0; - padding: 0; - } - .tsd-full-hierarchy ul { - padding-left: 1.5rem; - } - .tsd-full-hierarchy a { - padding: 0.25rem 0 !important; - font-size: 1rem; - display: inline-flex; - align-items: center; - color: var(--color-text); - } - .tsd-full-hierarchy svg[data-dropdown] { - cursor: pointer; - } - .tsd-full-hierarchy svg[data-dropdown="false"] { - transform: rotate(-90deg); - } - .tsd-full-hierarchy svg[data-dropdown="false"] ~ ul { - display: none; - } - - .tsd-panel-group.tsd-index-group { - margin-bottom: 0; - } - .tsd-index-panel .tsd-index-list { - list-style: none; - line-height: 1.333em; - margin: 0; - padding: 0.25rem 0 0 0; - overflow: hidden; - display: grid; - grid-template-columns: repeat(3, 1fr); - column-gap: 1rem; - grid-template-rows: auto; - } - @media (max-width: 1024px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(2, 1fr); - } - } - @media (max-width: 768px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(1, 1fr); - } - } - .tsd-index-panel .tsd-index-list li { - -webkit-page-break-inside: avoid; - -moz-page-break-inside: avoid; - -ms-page-break-inside: avoid; - -o-page-break-inside: avoid; - page-break-inside: avoid; - } - - .tsd-flag { - display: inline-block; - padding: 0.25em 0.4em; - border-radius: 4px; - color: var(--color-comment-tag-text); - background-color: var(--color-comment-tag); - text-indent: 0; - font-size: 75%; - line-height: 1; - font-weight: normal; - } - - .tsd-anchor { - position: relative; - top: -100px; - } - - .tsd-member { - position: relative; - } - .tsd-member .tsd-anchor + h3 { - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 0; - border-bottom: none; - } - - .tsd-navigation.settings { - margin: 0; - margin-bottom: 1rem; - } - .tsd-navigation > a, - .tsd-navigation .tsd-accordion-summary { - width: calc(100% - 0.25rem); - display: flex; - align-items: center; - } - .tsd-navigation a, - .tsd-navigation summary > span, - .tsd-page-navigation a { - display: flex; - width: calc(100% - 0.25rem); - align-items: center; - padding: 0.25rem; - color: var(--color-text); - text-decoration: none; - box-sizing: border-box; - } - .tsd-navigation a.current, - .tsd-page-navigation a.current { - background: var(--color-active-menu-item); - color: var(--color-contrast-text); - } - .tsd-navigation a:hover, - .tsd-page-navigation a:hover { - text-decoration: underline; - } - .tsd-navigation ul, - .tsd-page-navigation ul { - margin-top: 0; - margin-bottom: 0; - padding: 0; - list-style: none; - } - .tsd-navigation li, - .tsd-page-navigation li { - padding: 0; - max-width: 100%; - } - .tsd-navigation .tsd-nav-link { - display: none; - } - .tsd-nested-navigation { - margin-left: 3rem; - } - .tsd-nested-navigation > li > details { - margin-left: -1.5rem; - } - .tsd-small-nested-navigation { - margin-left: 1.5rem; - } - .tsd-small-nested-navigation > li > details { - margin-left: -1.5rem; - } - - .tsd-page-navigation-section > summary { - padding: 0.25rem; - } - .tsd-page-navigation-section > summary > svg { - margin-right: 0.25rem; - } - .tsd-page-navigation-section > div { - margin-left: 30px; - } - .tsd-page-navigation ul { - padding-left: 1.75rem; - } - - #tsd-sidebar-links a { - margin-top: 0; - margin-bottom: 0.5rem; - line-height: 1.25rem; - } - #tsd-sidebar-links a:last-of-type { - margin-bottom: 0; - } - - a.tsd-index-link { - padding: 0.25rem 0 !important; - font-size: 1rem; - line-height: 1.25rem; - display: inline-flex; - align-items: center; - color: var(--color-text); - } - .tsd-accordion-summary { - list-style-type: none; /* hide marker on non-safari */ - outline: none; /* broken on safari, so just hide it */ - display: flex; - align-items: center; - gap: 0.25rem; - box-sizing: border-box; - } - .tsd-accordion-summary::-webkit-details-marker { - display: none; /* hide marker on safari */ - } - .tsd-accordion-summary, - .tsd-accordion-summary a { - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; - user-select: none; - - cursor: pointer; - } - .tsd-accordion-summary a { - width: calc(100% - 1.5rem); - } - .tsd-accordion-summary > * { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; - } - /* - * We need to be careful to target the arrow indicating whether the accordion - * is open, but not any other SVGs included in the details element. - */ - .tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child { - transform: rotate(-90deg); - } - .tsd-index-content > :not(:first-child) { - margin-top: 0.75rem; - } - .tsd-index-summary { - margin-top: 1.5rem; - margin-bottom: 0.75rem; - display: flex; - align-content: center; - } - - .tsd-no-select { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - } - .tsd-kind-icon { - margin-right: 0.5rem; - width: 1.25rem; - height: 1.25rem; - min-width: 1.25rem; - min-height: 1.25rem; - } - .tsd-signature > .tsd-kind-icon { - margin-right: 0.8rem; - } - - .tsd-panel { - margin-bottom: 2.5rem; - } - .tsd-panel.tsd-member { - margin-bottom: 4rem; - } - .tsd-panel:empty { - display: none; - } - .tsd-panel > h1, - .tsd-panel > h2, - .tsd-panel > h3 { - margin: 1.5rem -1.5rem 0.75rem -1.5rem; - padding: 0 1.5rem 0.75rem 1.5rem; - } - .tsd-panel > h1.tsd-before-signature, - .tsd-panel > h2.tsd-before-signature, - .tsd-panel > h3.tsd-before-signature { - margin-bottom: 0; - border-bottom: none; - } - - .tsd-panel-group { - margin: 2rem 0; - } - .tsd-panel-group.tsd-index-group { - margin: 2rem 0; - } - .tsd-panel-group.tsd-index-group details { - margin: 2rem 0; - } - .tsd-panel-group > .tsd-accordion-summary { - margin-bottom: 1rem; - } - - #tsd-search[open] { - animation: fade-in var(--modal-animation-duration) ease-out forwards; - } - #tsd-search[open].closing { - animation-name: fade-out; - } - - /* Avoid setting `display` on closed dialog */ - #tsd-search[open] { - display: flex; - flex-direction: column; - padding: 1rem; - width: 32rem; - max-width: 90vw; - max-height: calc(100vh - env(keyboard-inset-height, 0px) - 25vh); - /* Anchor dialog to top */ - margin-top: 10vh; - border-radius: 6px; - will-change: max-height; - } - #tsd-search-input { - box-sizing: border-box; - width: 100%; - padding: 0 0.625rem; /* 10px */ - outline: 0; - border: 2px solid var(--color-accent); - background-color: transparent; - color: var(--color-text); - border-radius: 4px; - height: 2.5rem; - flex: 0 0 auto; - font-size: 0.875rem; - transition: border-color 0.2s, background-color 0.2s; - } - #tsd-search-input:focus-visible { - background-color: var(--color-background-active); - border-color: transparent; - color: var(--color-contrast-text); - } - #tsd-search-input::placeholder { - color: inherit; - opacity: 0.8; - } - #tsd-search-results { - margin: 0; - padding: 0; - list-style: none; - flex: 1 1 auto; - display: flex; - flex-direction: column; - overflow-y: auto; - } - #tsd-search-results:not(:empty) { - margin-top: 0.5rem; - } - #tsd-search-results > li { - background-color: var(--color-background); - line-height: 1.5; - box-sizing: border-box; - border-radius: 4px; - } - #tsd-search-results > li:nth-child(even) { - background-color: var(--color-background-secondary); - } - #tsd-search-results > li:is(:hover, [aria-selected="true"]) { - background-color: var(--color-background-active); - color: var(--color-contrast-text); - } - /* It's important that this takes full size of parent `li`, to capture a click on `li` */ - #tsd-search-results > li > a { - display: flex; - align-items: center; - padding: 0.5rem 0.25rem; - box-sizing: border-box; - width: 100%; - } - #tsd-search-results > li > a > .text { - flex: 1 1 auto; - min-width: 0; - overflow-wrap: anywhere; - } - #tsd-search-results > li > a .parent { - color: var(--color-text-aside); - } - #tsd-search-results > li > a mark { - color: inherit; - background-color: inherit; - font-weight: bold; - } - #tsd-search-status { - flex: 1; - display: grid; - place-content: center; - text-align: center; - overflow-wrap: anywhere; - } - #tsd-search-status:not(:empty) { - min-height: 6rem; - } - - .tsd-signature { - margin: 0 0 1rem 0; - padding: 1rem 0.5rem; - border: 1px solid var(--color-accent); - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 14px; - overflow-x: auto; - } - - .tsd-signature-keyword { - color: var(--color-ts-keyword); - font-weight: normal; - } - - .tsd-signature-symbol { - color: var(--color-text-aside); - font-weight: normal; - } - - .tsd-signature-type { - font-style: italic; - font-weight: normal; - } - - .tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - list-style-type: none; - } - .tsd-signatures .tsd-signature { - margin: 0; - border-color: var(--color-accent); - border-width: 1px 0; - transition: background-color 0.1s; - } - .tsd-signatures .tsd-index-signature:not(:last-child) { - margin-bottom: 1em; - } - .tsd-signatures .tsd-index-signature .tsd-signature { - border-width: 1px; - } - .tsd-description .tsd-signatures .tsd-signature { - border-width: 1px; - } - - ul.tsd-parameter-list, - ul.tsd-type-parameter-list { - list-style: square; - margin: 0; - padding-left: 20px; - } - ul.tsd-parameter-list > li.tsd-parameter-signature, - ul.tsd-type-parameter-list > li.tsd-parameter-signature { - list-style: none; - margin-left: -20px; - } - ul.tsd-parameter-list h5, - ul.tsd-type-parameter-list h5 { - font-size: 16px; - margin: 1em 0 0.5em 0; - } - .tsd-sources { - margin-top: 1rem; - font-size: 0.875em; - } - .tsd-sources a { - color: var(--color-text-aside); - text-decoration: underline; - } - .tsd-sources ul { - list-style: none; - padding: 0; - } - - .tsd-page-toolbar { - position: sticky; - z-index: 1; - top: 0; - left: 0; - width: 100%; - color: var(--color-text); - background: var(--color-background-secondary); - border-bottom: var(--dim-toolbar-border-bottom-width) - var(--color-accent) solid; - transition: transform 0.3s ease-in-out; - } - .tsd-page-toolbar a { - color: var(--color-text); - } - .tsd-toolbar-contents { - display: flex; - align-items: center; - height: var(--dim-toolbar-contents-height); - margin: 0 auto; - } - .tsd-toolbar-contents > .title { - font-weight: bold; - margin-right: auto; - } - #tsd-toolbar-links { - display: flex; - align-items: center; - gap: 1.5rem; - margin-right: 1rem; - } - - .tsd-widget { - box-sizing: border-box; - display: inline-block; - opacity: 0.8; - height: 2.5rem; - width: 2.5rem; - transition: opacity 0.1s, background-color 0.1s; - text-align: center; - cursor: pointer; - border: none; - background-color: transparent; - } - .tsd-widget:hover { - opacity: 0.9; - } - .tsd-widget:active { - opacity: 1; - background-color: var(--color-accent); - } - #tsd-toolbar-menu-trigger { - display: none; - } - - .tsd-member-summary-name { - display: inline-flex; - align-items: center; - padding: 0.25rem; - text-decoration: none; - } - - .tsd-anchor-icon { - display: inline-flex; - align-items: center; - margin-left: 0.5rem; - color: var(--color-text); - vertical-align: middle; - } - - .tsd-anchor-icon svg { - width: 1em; - height: 1em; - visibility: hidden; - } - - .tsd-member-summary-name:hover > .tsd-anchor-icon svg, - .tsd-anchor-link:hover > .tsd-anchor-icon svg, - .tsd-anchor-icon:focus-visible svg { - visibility: visible; - } - - .deprecated { - text-decoration: line-through !important; - } - - .warning { - padding: 1rem; - color: var(--color-warning-text); - background: var(--color-background-warning); - } - - .tsd-kind-project { - color: var(--color-ts-project); - } - .tsd-kind-module { - color: var(--color-ts-module); - } - .tsd-kind-namespace { - color: var(--color-ts-namespace); - } - .tsd-kind-enum { - color: var(--color-ts-enum); - } - .tsd-kind-enum-member { - color: var(--color-ts-enum-member); - } - .tsd-kind-variable { - color: var(--color-ts-variable); - } - .tsd-kind-function { - color: var(--color-ts-function); - } - .tsd-kind-class { - color: var(--color-ts-class); - } - .tsd-kind-interface { - color: var(--color-ts-interface); - } - .tsd-kind-constructor { - color: var(--color-ts-constructor); - } - .tsd-kind-property { - color: var(--color-ts-property); - } - .tsd-kind-method { - color: var(--color-ts-method); - } - .tsd-kind-reference { - color: var(--color-ts-reference); - } - .tsd-kind-call-signature { - color: var(--color-ts-call-signature); - } - .tsd-kind-index-signature { - color: var(--color-ts-index-signature); - } - .tsd-kind-constructor-signature { - color: var(--color-ts-constructor-signature); - } - .tsd-kind-parameter { - color: var(--color-ts-parameter); - } - .tsd-kind-type-parameter { - color: var(--color-ts-type-parameter); - } - .tsd-kind-accessor { - color: var(--color-ts-accessor); - } - .tsd-kind-get-signature { - color: var(--color-ts-get-signature); - } - .tsd-kind-set-signature { - color: var(--color-ts-set-signature); - } - .tsd-kind-type-alias { - color: var(--color-ts-type-alias); - } - - /* if we have a kind icon, don't color the text by kind */ - .tsd-kind-icon ~ span { - color: var(--color-text); - } - - /* mobile */ - @media (max-width: 769px) { - #tsd-toolbar-menu-trigger { - display: inline-block; - /* temporary fix to vertically align, for compatibility */ - line-height: 2.5; - } - #tsd-toolbar-links { - display: none; - } - - .container-main { - display: flex; - } - .col-content { - float: none; - max-width: 100%; - width: 100%; - } - .col-sidebar { - position: fixed !important; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - padding: 1.5rem 1.5rem 0 0; - width: 75vw; - visibility: hidden; - background-color: var(--color-background); - transform: translate(100%, 0); - } - .col-sidebar > *:last-child { - padding-bottom: 20px; - } - .overlay { - content: ""; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); - visibility: hidden; - } - - .to-has-menu .overlay { - animation: fade-in 0.4s; - } - - .to-has-menu .col-sidebar { - animation: pop-in-from-right 0.4s; - } - - .from-has-menu .overlay { - animation: fade-out 0.4s; - } - - .from-has-menu .col-sidebar { - animation: pop-out-to-right 0.4s; - } - - .has-menu body { - overflow: hidden; - } - .has-menu .overlay { - visibility: visible; - } - .has-menu .col-sidebar { - visibility: visible; - transform: translate(0, 0); - display: flex; - flex-direction: column; - gap: 1.5rem; - max-height: 100vh; - padding: 1rem 2rem; - } - .has-menu .tsd-navigation { - max-height: 100%; - } - .tsd-navigation .tsd-nav-link { - display: flex; - } - } - - /* one sidebar */ - @media (min-width: 770px) { - .container-main { - display: grid; - grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); - grid-template-areas: "sidebar content"; - --dim-container-main-margin-y: 2rem; - } - - .tsd-breadcrumb { - margin-top: 0; - } - - .col-sidebar { - grid-area: sidebar; - } - .col-content { - grid-area: content; - padding: 0 1rem; - } - } - @media (min-width: 770px) and (max-width: 1399px) { - .col-sidebar { - max-height: calc( - 100vh - var(--dim-header-height) - var(--dim-footer-height) - - 2 * var(--dim-container-main-margin-y) - ); - overflow: auto; - position: sticky; - top: calc( - var(--dim-header-height) + var(--dim-container-main-margin-y) - ); - } - .site-menu { - margin-top: 1rem; - } - } - - /* two sidebars */ - @media (min-width: 1200px) { - .container-main { - grid-template-columns: - minmax(0, 1fr) minmax(0, 2.5fr) minmax( - 0, - 20rem - ); - grid-template-areas: "sidebar content toc"; - } - - .col-sidebar { - display: contents; - } - - .page-menu { - grid-area: toc; - padding-left: 1rem; - } - .site-menu { - grid-area: sidebar; - } - - .site-menu { - margin-top: 0rem; - } - - .page-menu, - .site-menu { - max-height: calc( - 100vh - var(--dim-header-height) - var(--dim-footer-height) - - 2 * var(--dim-container-main-margin-y) - ); - overflow: auto; - position: sticky; - top: calc( - var(--dim-header-height) + var(--dim-container-main-margin-y) - ); - } - } -} diff --git a/client/docs/assets/typedoc-github-style.css b/client/docs/assets/typedoc-github-style.css deleted file mode 100644 index 71070519..00000000 --- a/client/docs/assets/typedoc-github-style.css +++ /dev/null @@ -1,434 +0,0 @@ -/* - * Define colors - */ - -:root { - /* GitHub "Light default" */ - --light-color-background: #ffffff; - --light-color-background-secondary: #f6f8fa; - --light-color-background-navbar: #f6f8fa; - --light-color-background-overlay: #c8d1da66; - - --light-color-accent: #d1d9e0; - - --light-color-text: #1f2328; - --light-color-text-aside: #59636e; - - --light-color-link: #0969da; - - --light-color-warning-border: #f7ebba; - --light-color-background-warning: #fff8c5; - - --light-color-alert-note: #0969da; - --light-color-alert-tip: #1a7f37; - --light-color-alert-important: #8250df; - --light-color-alert-warning: #9a6700; - --light-color-alert-caution: #cf222e; - - /* GitHub "Dark default" */ - --dark-color-background: #0d1117; - --dark-color-background-secondary: #151b23; - --dark-color-background-navbar: #010409; - --dark-color-background-overlay: #21283066; - - --dark-color-accent: #383e48; - - --dark-color-text: #f0f6fc; - --dark-color-text-aside: #9198a1; - - --dark-color-link: #4493f8; - - --dark-color-warning-border: #3a2d12; - --dark-color-background-warning: #282215; - - --dark-color-alert-note: #1f6feb; - --dark-color-alert-tip: #238636; - --dark-color-alert-important: #8957e5; - --dark-color-alert-warning: #9e6a03; - --dark-color-alert-caution: #da3633; - - /* Link colors */ - --color-warning-text: var(--color-text); - --color-contrast-text: var(--color-text); - --color-icon-background: var(--color-background); - --color-focus-outline: var(--color-accent); -} - -@media (prefers-color-scheme: light) { - :root { - --color-background-navbar: var(--light-color-background-navbar); - --color-background-overlay: var(--light-color-background-overlay); - --color-warning-border: var(--light-color-warning-border); - } -} - -@media (prefers-color-scheme: dark) { - :root { - --color-background-navbar: var(--dark-color-background-navbar); - --color-background-overlay: var(--dark-color-background-overlay); - --color-warning-border: var(--dark-color-warning-border); - } -} - -:root[data-theme='light'] { - --color-background-navbar: var(--light-color-background-navbar); - --color-background-overlay: var(--light-color-background-overlay); - --color-warning-border: var(--light-color-warning-border); -} - -:root[data-theme='dark'] { - --color-background-navbar: var(--dark-color-background-navbar); - --color-background-overlay: var(--dark-color-background-overlay); - --color-warning-border: var(--dark-color-warning-border); -} - -/* - * Define fonts - */ - -:root { - --font-family-text: - -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'; - --font-family-code: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace; -} - -body { - font-family: var(--font-family-text); -} - -/* - * Links - */ - -.tsd-accordion-details a, -.tsd-accordion a, -.tsd-page-toolbar a.title { - color: var(--color-text); - text-decoration: none; -} - -.tsd-accordion-details a:hover, -.tsd-page-toolbar a.title:hover, -.tsd-accordion a:hover, -.tsd-anchor-icon { - color: var(--color-text-aside); -} - -.tsd-kind-class { - color: var(--color-link); - text-decoration: underline; - text-underline-offset: 3px; -} - -.tsd-index-link, -.tsd-page-navigation a:hover { - text-decoration: none; -} - -.tsd-index-link:hover { - text-decoration: underline; - text-underline-offset: 3px; -} - -a code, -.tsd-sources a, -.tsd-page-navigation a:hover { - color: var(--color-link); -} - -a.external[target='_blank'] { - background-image: none; - padding-right: 0px; -} - -/* - * Tables - */ - -table { - margin: 1em 0; -} - -.tsd-typography th, -.tsd-typography td { - padding: 8px; - text-align: left; -} - -.tsd-typography th { - background-color: var(--color-background); - color: var(--color-text); -} - -.tsd-typography tr:nth-child(2n) { - background-color: var(--color-background-code); -} - -/* - * Horizontal line - */ - -.tsd-typography hr { - color: var(--color-accent); -} - -/* - * Buttons - */ - -button { - background-color: var(--color-background-navbar); - color: var(--color-text); - border: 1px solid var(--color-accent); - border-radius: 6px; - padding: 8px 16px; - cursor: pointer; - transition: background-color 0.1s ease-in-out; -} - -button:hover { - background-color: var(--color-accent); -} - -pre > button { - background-color: transparent; - transition: background-color 0.1s ease-in-out; - border: none; - opacity: 1; - top: 8px; - padding: 4px 8px; -} - -/* - * Checkbox - */ - -.tsd-filter-input input[type='checkbox'], -.tsd-filter-input svg { - width: 1em; - height: 1em; -} - -.tsd-filter-input svg { - border-radius: 2px; -} - -.tsd-checkbox-background { - fill: var(--color-background); - stroke: var(--color-accent); - stroke-width: 6px; -} - -input[type='checkbox']:checked ~ svg .tsd-checkbox-background { - fill: var(--color-accent); -} - -.tsd-checkbox-checkmark { - color: var(--color-text); -} - -/* - * Select - */ - -select { - background-color: var(--color-background); - border: 1px solid var(--color-accent); - border-radius: 6px; - padding: 8px; - font-family: inherit; -} - -/* - * Code blocks - */ - -code, -pre { - border: none; - border-radius: 6px; - margin: 1em 0; - background-color: var(--color-background-secondary); - color: var(--color-text); - font-family: var(--font-family-code); -} - -code.tsd-tag { - background-color: var(--color-accent); - border: unset; -} - -/* - * Warnings - */ - -.warning { - border-style: solid; - border-width: 1px; - border-color: var(--color-warning-border); - border-radius: 6px; -} - -/* - * Topbar - */ - -.tsd-page-toolbar { - background-color: var(--color-background-navbar); - border-bottom-color: var(--color-accent); -} - -.tsd-toolbar-contents a.title:hover { - color: var(--color-text); -} - -/* - * Search - */ - -#tsd-search-trigger { - width: unset; - border: unset; - background-color: unset; - transition: opacity 0.15s ease-in-out; -} - -#tsd-search-trigger:hover { - opacity: 1; -} - -#tsd-search-input, -#tsd-search-input:focus-visible { - background-color: transparent; - border: 1px solid var(--color-focus-outline); -} - -#tsd-search-status:not(:empty) { - min-height: unset; - padding-top: 1.5rem; - padding-bottom: 0.5rem; -} - -#tsd-search-results > li:is(:hover, [aria-selected='true']) { - background-color: color-mix(in srgb, var(--color-text-aside), #0000 88%); -} - -#tsd-search-results > li > a:hover { - text-decoration: unset; -} - -#tsd-overlay { - background-color: var(--color-background-overlay); -} - -/* - * Baseboard - */ - -footer { - border-top-color: var(--color-accent); -} - -/* - * Side navigations - */ - -.site-menu { - padding: 1rem 0; -} - -.tsd-navigation a { - color: var(--color-text); - border-radius: 6px; - padding: 6px; -} - -.tsd-navigation a, -.tsd-navigation a:hover { - text-decoration: none; -} - -.tsd-navigation a:hover:not(.current) { - background-color: color-mix(in srgb, var(--color-text-aside), #0000 88%); -} - -.tsd-navigation a.current { - background-color: color-mix(in srgb, var(--color-text-aside), #0000 92%); -} - -/* - * Type definition groups - */ - -.tsd-index-panel, -.tsd-member-group { - background-color: var(--color-background); - padding: 16px; - border: 1px var(--color-accent) solid; - border-radius: 6px; -} - -.tsd-panel > h1, -.tsd-panel > h2, -.tsd-panel > h3 { - margin-top: 0px; -} - -.tsd-panel-group.tsd-index-group details { - margin: 0px; -} - -.tsd-member-group .tsd-member:last-child { - margin-bottom: 0px; -} - -.tsd-signature { - border: 1px solid var(--color-accent); - border-radius: 6px; -} - -.tsd-signatures .tsd-signature { - border-color: var(--color-accent); - border-radius: 0px; -} - -.tsd-description .tsd-signatures .tsd-signature { - border-radius: 6px; -} - -.tsd-full-hierarchy:not(:last-child) { - border-bottom: var(--color-accent); -} - -/* - * Footer - */ - -footer p { - font-size: 1rem; - text-align: center; - color: var(--color-text-aside); -} - -/* - * Fix collapsed margin - */ - -.tsd-accordion-summary > h3 { - margin-top: 0px; - margin-bottom: 0px; -} - -.tsd-page-navigation:not([open]) > .tsd-accordion-summary { - margin-bottom: 0px; -} - -/* - * Fix collapse arrows position - */ - -.tsd-accordion-summary svg { - transition: transform 0.1s ease-in-out; - margin-top: auto; - margin-bottom: auto; -} diff --git a/client/docs/functions/accounts.hdKeyToAvalancheAccount.html b/client/docs/functions/accounts.hdKeyToAvalancheAccount.html deleted file mode 100644 index d1494499..00000000 --- a/client/docs/functions/accounts.hdKeyToAvalancheAccount.html +++ /dev/null @@ -1,7 +0,0 @@ -hdKeyToAvalancheAccount | Avalanche SDK Client
Avalanche SDK Client
    Preparing search index...

    Function hdKeyToAvalancheAccount

    diff --git a/client/docs/functions/accounts.memonicsToAvalancheAccount.html b/client/docs/functions/accounts.memonicsToAvalancheAccount.html deleted file mode 100644 index 91551397..00000000 --- a/client/docs/functions/accounts.memonicsToAvalancheAccount.html +++ /dev/null @@ -1,8 +0,0 @@ -memonicsToAvalancheAccount | Avalanche SDK Client
    Avalanche SDK Client
      Preparing search index...

      Function memonicsToAvalancheAccount

      diff --git a/client/docs/functions/accounts.parseAvalancheAccount.html b/client/docs/functions/accounts.parseAvalancheAccount.html deleted file mode 100644 index 769b8135..00000000 --- a/client/docs/functions/accounts.parseAvalancheAccount.html +++ /dev/null @@ -1,7 +0,0 @@ -parseAvalancheAccount | Avalanche SDK Client
      Avalanche SDK Client
        Preparing search index...

        Function parseAvalancheAccount

        diff --git a/client/docs/functions/accounts.privateKeyToAvalancheAccount.html b/client/docs/functions/accounts.privateKeyToAvalancheAccount.html deleted file mode 100644 index 7167d066..00000000 --- a/client/docs/functions/accounts.privateKeyToAvalancheAccount.html +++ /dev/null @@ -1,5 +0,0 @@ -privateKeyToAvalancheAccount | Avalanche SDK Client
        Avalanche SDK Client
          Preparing search index...

          Function privateKeyToAvalancheAccount

          diff --git a/client/docs/functions/accounts.privateKeyToXPAccount.html b/client/docs/functions/accounts.privateKeyToXPAccount.html deleted file mode 100644 index 2799aa49..00000000 --- a/client/docs/functions/accounts.privateKeyToXPAccount.html +++ /dev/null @@ -1,4 +0,0 @@ -privateKeyToXPAccount | Avalanche SDK Client
          Avalanche SDK Client
            Preparing search index...

            Function privateKeyToXPAccount

            diff --git a/client/docs/functions/accounts.privateKeyToXPAddress.html b/client/docs/functions/accounts.privateKeyToXPAddress.html deleted file mode 100644 index dcac6933..00000000 --- a/client/docs/functions/accounts.privateKeyToXPAddress.html +++ /dev/null @@ -1,8 +0,0 @@ -privateKeyToXPAddress | Avalanche SDK Client
            Avalanche SDK Client
              Preparing search index...

              Function privateKeyToXPAddress

              • Converts a private key to an XP address.

                -

                Parameters

                • privateKey: string

                  The private key to convert.

                  -
                • hrp: string

                  The human readable prefix to use for the address.

                  -

                Returns string

                The XP address as a 0x prefixed string.

                -
                import { privateKeyToXPAddress } from "@avalanche-sdk/client/accounts";

                const address = privateKeyToXPAddress("0xab....", "avax");
                console.log(address); -
                - -
              diff --git a/client/docs/functions/accounts.privateKeyToXPPublicKey.html b/client/docs/functions/accounts.privateKeyToXPPublicKey.html deleted file mode 100644 index a429b468..00000000 --- a/client/docs/functions/accounts.privateKeyToXPPublicKey.html +++ /dev/null @@ -1,7 +0,0 @@ -privateKeyToXPPublicKey | Avalanche SDK Client
              Avalanche SDK Client
                Preparing search index...

                Function privateKeyToXPPublicKey

                • Converts a private key to an XP public key.

                  -

                  Parameters

                  • privateKey: string

                    The private key to convert.

                    -

                  Returns string

                  The XP public key as a 0x prefixed string.

                  -
                  import { privateKeyToXPPublicKey } from "@avalanche-sdk/client/accounts";

                  const publicKey = privateKeyToXPPublicKey("0xab....");
                  console.log(publicKey); -
                  - -
                diff --git a/client/docs/functions/accounts.publicKeyToXPAddress.html b/client/docs/functions/accounts.publicKeyToXPAddress.html deleted file mode 100644 index 7879d73b..00000000 --- a/client/docs/functions/accounts.publicKeyToXPAddress.html +++ /dev/null @@ -1,8 +0,0 @@ -publicKeyToXPAddress | Avalanche SDK Client
                Avalanche SDK Client
                  Preparing search index...

                  Function publicKeyToXPAddress

                  • Converts a public key to an XP address.

                    -

                    Parameters

                    • publicKey: string

                      The public key to convert.

                      -
                    • hrp: string

                      The human readable prefix to use for the address.

                      -

                    Returns string

                    The XP address as a 0x prefixed string.

                    -
                    import { publicKeyToXPAddress } from "@avalanche-sdk/client/accounts";

                    const address = publicKeyToXPAddress("0xab....", "avax");
                    console.log(address); -
                    - -
                  diff --git a/client/docs/functions/accounts.xpRecoverPublicKey.html b/client/docs/functions/accounts.xpRecoverPublicKey.html deleted file mode 100644 index a303fd40..00000000 --- a/client/docs/functions/accounts.xpRecoverPublicKey.html +++ /dev/null @@ -1,8 +0,0 @@ -xpRecoverPublicKey | Avalanche SDK Client
                  Avalanche SDK Client
                    Preparing search index...

                    Function xpRecoverPublicKey

                    • Recovers a public key from a signature and message.

                      -

                      Parameters

                      • message: string

                        The message that was signed.

                        -
                      • signature: string

                        The signature.

                        -

                      Returns string

                      The recovered public key as a 0x prefixed string.

                      -
                      import { xpRecoverPublicKey } from "@avalanche-sdk/client/accounts";

                      const publicKey = xpRecoverPublicKey("0xab....", "0xab....");
                      console.log(publicKey); -
                      - -
                    diff --git a/client/docs/functions/accounts.xpSignMessage.html b/client/docs/functions/accounts.xpSignMessage.html deleted file mode 100644 index 4d1695ef..00000000 --- a/client/docs/functions/accounts.xpSignMessage.html +++ /dev/null @@ -1,5 +0,0 @@ -xpSignMessage | Avalanche SDK Client
                    Avalanche SDK Client
                      Preparing search index...

                      Function xpSignMessage

                      • Signs a message with an XP private key.

                        -

                        Parameters

                        • message: string

                          The message to sign.

                          -
                        • privateKey: string

                          The private key to sign with.

                          -

                        Returns Promise<string>

                        A promise that resolves to the signature as a 0x prefixed string.

                        -
                      diff --git a/client/docs/functions/accounts.xpSignTransaction.html b/client/docs/functions/accounts.xpSignTransaction.html deleted file mode 100644 index f1b2d7d0..00000000 --- a/client/docs/functions/accounts.xpSignTransaction.html +++ /dev/null @@ -1,5 +0,0 @@ -xpSignTransaction | Avalanche SDK Client
                      Avalanche SDK Client
                        Preparing search index...

                        Function xpSignTransaction

                        • Signs a transaction hash with an XP private key.

                          -

                          Parameters

                          • txHash: string | Uint8Array<ArrayBufferLike>

                            The transaction hash to sign.

                            -
                          • privateKey: string | Uint8Array<ArrayBufferLike>

                            The private key to sign with.

                            -

                          Returns Promise<string>

                          A promise that resolves to the signature as a 0x prefixed string.

                          -
                        diff --git a/client/docs/functions/accounts.xpVerifySignature.html b/client/docs/functions/accounts.xpVerifySignature.html deleted file mode 100644 index f0cb106b..00000000 --- a/client/docs/functions/accounts.xpVerifySignature.html +++ /dev/null @@ -1,6 +0,0 @@ -xpVerifySignature | Avalanche SDK Client
                        Avalanche SDK Client
                          Preparing search index...

                          Function xpVerifySignature

                          • Verifies a signature.

                            -

                            Parameters

                            • signature: string

                              The signature to verify.

                              -
                            • message: string

                              The message that was signed.

                              -
                            • publicKey: string

                              The public key to verify with.

                              -

                            Returns boolean

                            A boolean indicating whether the signature is valid.

                            -
                          diff --git a/client/docs/functions/index.adminAPIActions.html b/client/docs/functions/index.adminAPIActions.html deleted file mode 100644 index 0b651cd4..00000000 --- a/client/docs/functions/index.adminAPIActions.html +++ /dev/null @@ -1 +0,0 @@ -adminAPIActions | Avalanche SDK Client
                          Avalanche SDK Client
                            Preparing search index...

                            Function adminAPIActions

                            • Type Parameters

                              • chain extends undefined | Chain = undefined | Chain

                              Parameters

                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                              Returns AdminAPIActions

                            diff --git a/client/docs/functions/index.avalanchePublicActions.html b/client/docs/functions/index.avalanchePublicActions.html deleted file mode 100644 index 0d66aa20..00000000 --- a/client/docs/functions/index.avalanchePublicActions.html +++ /dev/null @@ -1 +0,0 @@ -avalanchePublicActions | Avalanche SDK Client
                            Avalanche SDK Client
                              Preparing search index...

                              Function avalanchePublicActions

                              diff --git a/client/docs/functions/index.avalancheWalletActions.html b/client/docs/functions/index.avalancheWalletActions.html deleted file mode 100644 index d8f89868..00000000 --- a/client/docs/functions/index.avalancheWalletActions.html +++ /dev/null @@ -1 +0,0 @@ -avalancheWalletActions | Avalanche SDK Client
                              Avalanche SDK Client
                                Preparing search index...

                                Function avalancheWalletActions

                                diff --git a/client/docs/functions/index.cChainActions.html b/client/docs/functions/index.cChainActions.html deleted file mode 100644 index 81318516..00000000 --- a/client/docs/functions/index.cChainActions.html +++ /dev/null @@ -1 +0,0 @@ -cChainActions | Avalanche SDK Client
                                Avalanche SDK Client
                                  Preparing search index...

                                  Function cChainActions

                                  • Type Parameters

                                    • chain extends undefined | Chain = undefined | Chain

                                    Parameters

                                    • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                    Returns CChainActions

                                  diff --git a/client/docs/functions/index.cChainWalletActions.html b/client/docs/functions/index.cChainWalletActions.html deleted file mode 100644 index 9c590e73..00000000 --- a/client/docs/functions/index.cChainWalletActions.html +++ /dev/null @@ -1 +0,0 @@ -cChainWalletActions | Avalanche SDK Client
                                  Avalanche SDK Client
                                    Preparing search index...

                                    Function cChainWalletActions

                                    diff --git a/client/docs/functions/index.createAdminApiClient.html b/client/docs/functions/index.createAdminApiClient.html deleted file mode 100644 index adfd6d16..00000000 --- a/client/docs/functions/index.createAdminApiClient.html +++ /dev/null @@ -1,80 +0,0 @@ -createAdminApiClient | Avalanche SDK Client
                                    Avalanche SDK Client
                                      Preparing search index...

                                      Function createAdminApiClient

                                      • Creates an Admin API Client with a given transport configured for a Chain.

                                        -

                                        Type Parameters

                                        • transport extends Transport
                                        • chain extends undefined | Chain = undefined
                                        • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                        • rpcSchema extends undefined | RpcSchema = undefined
                                        • raw extends boolean = false

                                        Parameters

                                        Returns {
                                            alias: (args: AliasParameters) => Promise<void>;
                                            aliasChain: (args: AliasChainParameters) => Promise<void>;
                                            extend: <const client extends { [key: string]: unknown }>(
                                                fn: (
                                                    client: {
                                                        alias: ...;
                                                        aliasChain: ...;
                                                        extend: ...;
                                                        getChainAliases: ...;
                                                        getLoggerLevel: ...;
                                                        loadVMs: ...;
                                                        lockProfile: ...;
                                                        memoryProfile: ...;
                                                        setLoggerLevel: ...;
                                                        startCPUProfiler: ...;
                                                        stopCPUProfiler: ...;
                                                    },
                                                ) => client,
                                            ) => { [K in (...)
                                            | (...)
                                            | (...)]: (...)[(...)] };
                                            getChainAliases: (args: GetChainAliasesParameters) => Promise<GetChainAliasesReturnType>;
                                            getLoggerLevel: (args: GetLoggerLevelParameters) => Promise<GetLoggerLevelReturnType>;
                                            loadVMs: () => Promise<LoadVMsReturnType>;
                                            lockProfile: () => Promise<void>;
                                            memoryProfile: () => Promise<void>;
                                            setLoggerLevel: (args: SetLoggerLevelParameters) => Promise<void>;
                                            startCPUProfiler: () => Promise<void>;
                                            stopCPUProfiler: () => Promise<void>;
                                        }

                                        An Admin API Client. AdminApiClient

                                        -
                                        • alias: (args: AliasParameters) => Promise<void>

                                          Assign an API endpoint an alias, a different endpoint for the API. -The original endpoint will still work. This change only affects this node.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.alias({
                                          endpoint: "bc/X",
                                          alias: "myAlias"
                                          }) -
                                          - -
                                        • aliasChain: (args: AliasChainParameters) => Promise<void>

                                          Give a blockchain an alias, a different name that can be used any place the blockchain's ID is used. -Note: The alias is set for each chain on each node individually.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.aliasChain({
                                          chain: "sV6o671RtkGBcno1FiaDbVcFv2sG5aVXMZYzKdP4VQAWmJQnM",
                                          alias: "myBlockchainAlias"
                                          }) -
                                          - -
                                        • extend: <const client extends { [key: string]: unknown }>(
                                              fn: (
                                                  client: {
                                                      alias: ...;
                                                      aliasChain: ...;
                                                      extend: ...;
                                                      getChainAliases: ...;
                                                      getLoggerLevel: ...;
                                                      loadVMs: ...;
                                                      lockProfile: ...;
                                                      memoryProfile: ...;
                                                      setLoggerLevel: ...;
                                                      startCPUProfiler: ...;
                                                      stopCPUProfiler: ...;
                                                  },
                                              ) => client,
                                          ) => { [K in (...)
                                          | (...)
                                          | (...)]: (...)[(...)] }
                                        • getChainAliases: (args: GetChainAliasesParameters) => Promise<GetChainAliasesReturnType>
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          const aliases = await client.admin.getChainAliases({
                                          chain: "sV6o671RtkGBcno1FiaDbVcFv2sG5aVXMZYzKdP4VQAWmJQnM"
                                          }) -
                                          - -
                                        • getLoggerLevel: (args: GetLoggerLevelParameters) => Promise<GetLoggerLevelReturnType>

                                          Returns log and display levels of loggers.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          const loggerLevels = await client.admin.getLoggerLevel({
                                          loggerName: "C"
                                          }) -
                                          - -
                                        • loadVMs: () => Promise<LoadVMsReturnType>

                                          Dynamically loads any virtual machines installed on the node as plugins.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          const vms = await client.admin.loadVMs() -
                                          - -
                                        • lockProfile: () => Promise<void>

                                          Writes a profile of mutex statistics to lock.profile.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.lockProfile() -
                                          - -
                                        • memoryProfile: () => Promise<void>

                                          Writes a memory profile of the node to mem.profile.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.memoryProfile() -
                                          - -
                                        • setLoggerLevel: (args: SetLoggerLevelParameters) => Promise<void>

                                          Sets log and display levels of loggers.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.setLoggerLevel({
                                          loggerName: "C",
                                          logLevel: "DEBUG",
                                          displayLevel: "INFO"
                                          }) -
                                          - -
                                        • startCPUProfiler: () => Promise<void>

                                          Start profiling the CPU utilization of the node. -To stop, call stopCPUProfiler. On stop, writes the profile to cpu.profile.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.startCPUProfiler() -
                                          - -
                                        • stopCPUProfiler: () => Promise<void>

                                          Stop the CPU profile that was previously started.

                                          - -
                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                          const client = createAvalancheClient({
                                          chain: avalanche,
                                          transport: {
                                          type: "http",
                                          },
                                          })

                                          await client.admin.stopCPUProfiler() -
                                          - -
                                        import { createAdminApiClient} from '@avalanche-sdk/client'
                                        import { avalanche } from '@avalanche-sdk/client/chains'

                                        const client = createAdminApiClient({
                                        chain: avalanche,
                                        transport: {
                                        type: "http",
                                        url: "https://api.avax.network/ext/admin",
                                        },
                                        })

                                        // Set endpoint alias
                                        const alias = await client.alias({ endpoint: "bc/X", alias: "myAlias" }) -
                                        - -
                                      diff --git a/client/docs/functions/index.createAvalancheBaseClient.html b/client/docs/functions/index.createAvalancheBaseClient.html deleted file mode 100644 index 28cc2aa8..00000000 --- a/client/docs/functions/index.createAvalancheBaseClient.html +++ /dev/null @@ -1 +0,0 @@ -createAvalancheBaseClient | Avalanche SDK Client
                                      Avalanche SDK Client
                                        Preparing search index...

                                        Function createAvalancheBaseClient

                                        • Type Parameters

                                          • transport extends Transport
                                          • chain extends undefined | Chain = undefined
                                          • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                          • rpcSchema extends undefined | RpcSchema = undefined
                                          • extended extends undefined | { [key: string]: unknown } = undefined | { [key: string]: unknown }

                                          Parameters

                                          • parameters: {}

                                          Returns { [K in string | number | symbol]: (Omit<(...), (...)> & ((...) extends (...) ? (...) : (...)) & { extend: ... })[K] }

                                        diff --git a/client/docs/functions/index.createAvalancheClient.html b/client/docs/functions/index.createAvalancheClient.html deleted file mode 100644 index a78a9093..00000000 --- a/client/docs/functions/index.createAvalancheClient.html +++ /dev/null @@ -1,18 +0,0 @@ -createAvalancheClient | Avalanche SDK Client
                                        Avalanche SDK Client
                                          Preparing search index...

                                          Function createAvalancheClient

                                          • Creates an Avalanche Client with a given transport configured for a Chain.

                                            -

                                            The Avalanche Client is an interface to interact with the Avalanche network through various JSON-RPC API methods. -It provides access to multiple sub-clients for different chains and APIs:

                                            -
                                              -
                                            • P-Chain (Platform Chain)
                                            • -
                                            • X-Chain (Exchange Chain)
                                            • -
                                            • C-Chain (Contract Chain)
                                            • -
                                            • Admin API
                                            • -
                                            • Info API
                                            • -
                                            • Health API
                                            • -
                                            • Index API
                                            • -
                                            -

                                            Type Parameters

                                            • transport extends Transport
                                            • chain extends undefined | Chain = undefined
                                            • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                            • rpcSchema extends undefined | RpcSchema = undefined
                                            • raw extends boolean = false

                                            Parameters

                                            Returns { [K in string | number | symbol]: (Client_Base<(...), (...), (...), (...)> & AvalanchePublicActions & PublicActions & {} & ((...) extends (...) ? (...) : (...)))[K] }

                                            An Avalanche Client with access to all sub-clients. AvalancheClient

                                            -
                                            import { createAvalancheClient} from '@avalanche-sdk/client'
                                            import { avalanche } from '@avalanche-sdk/client/chains'

                                            const client = createAvalancheClient({
                                            chain: avalanche,
                                            transport: {
                                            type: "http",
                                            },
                                            })

                                            // Access different chain clients
                                            const pChainClient = client.pChain
                                            const xChainClient = client.xChain
                                            const cChainClient = client.cChain

                                            // Access API clients
                                            const adminClient = client.admin
                                            const infoClient = client.info
                                            const healthClient = client.health
                                            const indexPChainBlockClient = client.indexPChainBlock

                                            // Get the latest block number
                                            const blockNumber = await client.pChain.getBlockNumber()

                                            // Get base fee
                                            const baseFee = await client.getBaseFee() -
                                            - -
                                          diff --git a/client/docs/functions/index.createAvalancheCoreClient.html b/client/docs/functions/index.createAvalancheCoreClient.html deleted file mode 100644 index da01e98b..00000000 --- a/client/docs/functions/index.createAvalancheCoreClient.html +++ /dev/null @@ -1,9 +0,0 @@ -createAvalancheCoreClient | Avalanche SDK Client
                                          Avalanche SDK Client
                                            Preparing search index...

                                            Function createAvalancheCoreClient

                                            • Creates an Avalanche Core Client with a given transport configured for a Chain.

                                              -

                                              The Avalanche Core Client is a base client that can be used to create other -Avalanche clients or make rpc requests.

                                              -

                                              Type Parameters

                                              • transport extends Transport
                                              • chain extends undefined | Chain = undefined
                                              • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                              • rpcSchema extends undefined | RpcSchema = undefined
                                              • extended extends undefined | { [key: string]: unknown } = undefined | { [key: string]: unknown }
                                              • raw extends boolean = false

                                              Parameters

                                              Returns { [K in string | number | symbol]: { [K in (...) | (...) | (...)]: (...)[(...)] }[K] }

                                              A Avalanche Core Client. AvalancheCoreClient

                                              -
                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                              const client = createAvalancheCoreClient({
                                              chain: avalanche,
                                              transport: { type: "http" },
                                              })

                                              const block = await client.getBlock("latest") -
                                              - -
                                            diff --git a/client/docs/functions/index.createAvalancheTransportClient.html b/client/docs/functions/index.createAvalancheTransportClient.html deleted file mode 100644 index 42f3be4b..00000000 --- a/client/docs/functions/index.createAvalancheTransportClient.html +++ /dev/null @@ -1 +0,0 @@ -createAvalancheTransportClient | Avalanche SDK Client
                                            Avalanche SDK Client
                                              Preparing search index...

                                              Function createAvalancheTransportClient

                                              • Type Parameters

                                                • transport extends Transport
                                                • chain extends undefined | Chain = undefined | Chain
                                                • rpcSchema extends undefined | RpcSchema = undefined
                                                • raw extends boolean = false

                                                Parameters

                                                Returns transport

                                              diff --git a/client/docs/functions/index.createAvalancheWalletClient.html b/client/docs/functions/index.createAvalancheWalletClient.html deleted file mode 100644 index f157d676..00000000 --- a/client/docs/functions/index.createAvalancheWalletClient.html +++ /dev/null @@ -1,48 +0,0 @@ -createAvalancheWalletClient | Avalanche SDK Client
                                              Avalanche SDK Client
                                                Preparing search index...

                                                Function createAvalancheWalletClient

                                                diff --git a/client/docs/functions/index.createAvalancheWalletCoreClient.html b/client/docs/functions/index.createAvalancheWalletCoreClient.html deleted file mode 100644 index 46f7b12b..00000000 --- a/client/docs/functions/index.createAvalancheWalletCoreClient.html +++ /dev/null @@ -1 +0,0 @@ -createAvalancheWalletCoreClient | Avalanche SDK Client
                                                Avalanche SDK Client
                                                  Preparing search index...

                                                  Function createAvalancheWalletCoreClient

                                                  diff --git a/client/docs/functions/index.createCChainClient.html b/client/docs/functions/index.createCChainClient.html deleted file mode 100644 index 8c135070..00000000 --- a/client/docs/functions/index.createCChainClient.html +++ /dev/null @@ -1,43 +0,0 @@ -createCChainClient | Avalanche SDK Client
                                                  Avalanche SDK Client
                                                    Preparing search index...

                                                    Function createCChainClient

                                                    • Creates a C-Chain (Contract Chain) Client with a given transport configured for a Chain.

                                                      -

                                                      The C-Chain Client is an interface to interact with the Avalanche Contract Chain through Avalanche-specific JSON-RPC API methods. -The Contract Chain is an instance of the Ethereum Virtual Machine (EVM) that supports:

                                                      -
                                                        -
                                                      • Cross-chain operations (import/export)
                                                      • -
                                                      • Atomic transactions
                                                      • -
                                                      • UTXO management
                                                      • -
                                                      • Dynamic fee calculations
                                                      • -
                                                      -

                                                      Type Parameters

                                                      • transport extends Transport
                                                      • chain extends undefined | Chain = undefined
                                                      • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                                      • rpcSchema extends undefined | RpcSchema = undefined
                                                      • raw extends boolean = false

                                                      Parameters

                                                      Returns {
                                                          extend: <const client extends { [key: string]: unknown }>(
                                                              fn: (client: { extend: ...; getAtomicTx: ...; getAtomicTxStatus: ...; getUTXOs: ...; issueTx: ... }) => client,
                                                          ) => { [K in (...) | (...) | (...)]: (...)[(...)] };
                                                          getAtomicTx: (args: GetAtomicTxParameters) => Promise<GetAtomicTxReturnType>;
                                                          getAtomicTxStatus: (args: GetAtomicTxStatusParameters) => Promise<GetAtomicTxStatusReturnType>;
                                                          getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>;
                                                          issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>;
                                                      }

                                                      A C-Chain Client. CChainClient

                                                      -
                                                      • extend: <const client extends { [key: string]: unknown }>(
                                                            fn: (client: { extend: ...; getAtomicTx: ...; getAtomicTxStatus: ...; getUTXOs: ...; issueTx: ... }) => client,
                                                        ) => { [K in (...) | (...) | (...)]: (...)[(...)] }
                                                      • getAtomicTx: (args: GetAtomicTxParameters) => Promise<GetAtomicTxReturnType>

                                                        Get the atomic transaction by its ID.

                                                        - -
                                                        import { createAvalancheClient} from '@avalanche-sdk/client'
                                                        import { avalanche } from '@avalanche-sdk/client/chains'

                                                        const client = createAvalancheClient({
                                                        chain: avalanche,
                                                        transport: {
                                                        type: "http",
                                                        },
                                                        })

                                                        const tx = await client.cChain.getAtomicTx({
                                                        txID: "2QouvMUbQ6oy7yQ9tLvL3L8tGQG2QK1wJ1q1wJ1q1wJ1q1wJ1q1wJ1q1wJ1"
                                                        }) -
                                                        - -
                                                      • getAtomicTxStatus: (args: GetAtomicTxStatusParameters) => Promise<GetAtomicTxStatusReturnType>

                                                        Get the status of an atomic transaction.

                                                        - -
                                                        import { createAvalancheClient} from '@avalanche-sdk/client'
                                                        import { avalanche } from '@avalanche-sdk/client/chains'

                                                        const client = createAvalancheClient({
                                                        chain: avalanche,
                                                        transport: {
                                                        type: "http",
                                                        },
                                                        })

                                                        const status = await client.cChain.getAtomicTxStatus({
                                                        txID: "2QouvMUbQ6oy7yQ9tLvL3L8tGQG2QK1wJ1q1wJ1q1wJ1q1wJ1q1wJ1q1wJ1"
                                                        }) -
                                                        - -
                                                      • getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>

                                                        Get the UTXOs for a set of addresses.

                                                        - -
                                                        import { createAvalancheClient} from '@avalanche-sdk/client'
                                                        import { avalanche } from '@avalanche-sdk/client/chains'

                                                        const client = createAvalancheClient({
                                                        chain: avalanche,
                                                        transport: {
                                                        type: "http",
                                                        },
                                                        })

                                                        const utxos = await client.cChain.getUTXOs({
                                                        addresses: ["X-avax1...", "X-avax2..."],
                                                        limit: 100
                                                        }) -
                                                        - -
                                                      • issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>

                                                        Send a signed transaction to the network.

                                                        - -
                                                        import { createAvalancheClient} from '@avalanche-sdk/client'
                                                        import { avalanche } from '@avalanche-sdk/client/chains'

                                                        const client = createAvalancheClient({
                                                        chain: avalanche,
                                                        transport: {
                                                        type: "http",
                                                        },
                                                        })

                                                        const txID = await client.cChain.issueTx({
                                                        tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                        encoding: "hex"
                                                        }) -
                                                        - -
                                                      import { createCChainClient} from '@avalanche-sdk/client'
                                                      import { avalanche } from '@avalanche-sdk/client/chains'

                                                      const client = createCChainClient({
                                                      chain: avalanche,
                                                      transport: {
                                                      type: "http",
                                                      },
                                                      })

                                                      // Get atomic transaction
                                                      const atomicTx = await client.getAtomicTx({ txID: '0x...' }) -
                                                      - -
                                                    diff --git a/client/docs/functions/index.createHealthApiClient.html b/client/docs/functions/index.createHealthApiClient.html deleted file mode 100644 index f6c80a23..00000000 --- a/client/docs/functions/index.createHealthApiClient.html +++ /dev/null @@ -1,32 +0,0 @@ -createHealthApiClient | Avalanche SDK Client
                                                    Avalanche SDK Client
                                                      Preparing search index...

                                                      Function createHealthApiClient

                                                      • Creates a Health API Client with a given transport configured for a Chain.

                                                        -

                                                        The Health API Client is an interface to interact with the Health API through Avalanche-specific JSON-RPC API methods.

                                                        -

                                                        Type Parameters

                                                        • transport extends Transport
                                                        • chain extends undefined | Chain = undefined
                                                        • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                                        • rpcSchema extends undefined | RpcSchema = undefined
                                                        • raw extends boolean = false

                                                        Parameters

                                                        Returns {
                                                            extend: <const client extends { [key: string]: unknown }>(
                                                                fn: (client: { extend: ...; health: ...; liveness: ...; readiness: ... }) => client,
                                                            ) => { [K in (...) | (...) | (...)]: (...)[(...)] };
                                                            health: (args: HealthParameters) => Promise<HealthReturnType>;
                                                            liveness: () => Promise<LivenessReturnType>;
                                                            readiness: (args: ReadinessParameters) => Promise<ReadinessReturnType>;
                                                        }

                                                        A Health API Client. HealthApiClient

                                                        -
                                                        • extend: <const client extends { [key: string]: unknown }>(
                                                              fn: (client: { extend: ...; health: ...; liveness: ...; readiness: ... }) => client,
                                                          ) => { [K in (...) | (...) | (...)]: (...)[(...)] }
                                                        • health: (args: HealthParameters) => Promise<HealthReturnType>

                                                          Returns the last set of health check results for the node. -This includes checks for all chains, network, database, and other components.

                                                          - -
                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                          const client = createAvalancheClient({
                                                          chain: avalanche,
                                                          transport: {
                                                          type: "http",
                                                          },
                                                          })

                                                          const healthStatus = await client.health.health({
                                                          tags: ["11111111111111111111111111111111LpoYY", "29uVeLPJB1eQJkzRemU8g8wZDw5uJRqpab5U2mX9euieVwiEbL"]
                                                          })
                                                          -
                                                          - -
                                                        • liveness: () => Promise<LivenessReturnType>

                                                          Returns a simple health check indicating if the node is alive and can handle requests. -This is a lightweight check that always returns healthy if the endpoint is available.

                                                          - -
                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                          const client = createAvalancheClient({
                                                          chain: avalanche,
                                                          transport: {
                                                          type: "http",
                                                          },
                                                          })
                                                          -
                                                          - -
                                                        • readiness: (args: ReadinessParameters) => Promise<ReadinessReturnType>

                                                          Returns the last evaluation of the startup health check results. -This indicates if the node has finished initializing and is ready to handle requests.

                                                          - -
                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                          const client = createAvalancheClient({
                                                          chain: avalanche,
                                                          transport: {
                                                          type: "http",
                                                          },
                                                          })

                                                          const readinessStatus = await client.health.readiness({
                                                          tags: ["11111111111111111111111111111111LpoYY"]
                                                          })
                                                          -
                                                          - -
                                                        import { createHealthApiClient} from '@avalanche-sdk/client'
                                                        import { avalanche } from '@avalanche-sdk/client/chains'

                                                        const client = createHealthApiClient({
                                                        chain: avalanche,
                                                        transport: {
                                                        type: "http",
                                                        },
                                                        })

                                                        // Get health status
                                                        const health = await client.liveness() -
                                                        - -
                                                      diff --git a/client/docs/functions/index.createIndexApiClient.html b/client/docs/functions/index.createIndexApiClient.html deleted file mode 100644 index 2123a1fe..00000000 --- a/client/docs/functions/index.createIndexApiClient.html +++ /dev/null @@ -1,50 +0,0 @@ -createIndexApiClient | Avalanche SDK Client
                                                      Avalanche SDK Client
                                                        Preparing search index...

                                                        Function createIndexApiClient

                                                        diff --git a/client/docs/functions/index.createInfoApiClient.html b/client/docs/functions/index.createInfoApiClient.html deleted file mode 100644 index 559e7157..00000000 --- a/client/docs/functions/index.createInfoApiClient.html +++ /dev/null @@ -1,102 +0,0 @@ -createInfoApiClient | Avalanche SDK Client
                                                        Avalanche SDK Client
                                                          Preparing search index...

                                                          Function createInfoApiClient

                                                          • Creates an Info API Client with a given transport configured for a Chain.

                                                            -

                                                            The Info API Client is an interface to interact with the Info API through Avalanche-specific JSON-RPC API methods.

                                                            -

                                                            Type Parameters

                                                            • transport extends Transport
                                                            • chain extends undefined | Chain = undefined
                                                            • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                                            • rpcSchema extends undefined | RpcSchema = undefined
                                                            • raw extends boolean = false

                                                            Parameters

                                                            Returns {
                                                                acps: () => Promise<AcpsReturnType>;
                                                                extend: <const client extends { [key: string]: unknown }>(
                                                                    fn: (
                                                                        client: {
                                                                            acps: ...;
                                                                            extend: ...;
                                                                            getBlockchainID: ...;
                                                                            getNetworkID: ...;
                                                                            getNetworkName: ...;
                                                                            getNodeID: ...;
                                                                            getNodeIP: ...;
                                                                            getNodeVersion: ...;
                                                                            getTxFee: ...;
                                                                            getVMs: ...;
                                                                            isBootstrapped: ...;
                                                                            peers: ...;
                                                                            upgrades: ...;
                                                                            uptime: ...;
                                                                        },
                                                                    ) => client,
                                                                ) => { [K in (...)
                                                                | (...)
                                                                | (...)]: (...)[(...)] };
                                                                getBlockchainID: (args: GetBlockchainIDParameters) => Promise<GetBlockchainIDReturnType>;
                                                                getNetworkID: () => Promise<GetNetworkIDReturnType>;
                                                                getNetworkName: () => Promise<GetNetworkNameReturnType>;
                                                                getNodeID: () => Promise<GetNodeIDReturnType>;
                                                                getNodeIP: () => Promise<GetNodeIPReturnType>;
                                                                getNodeVersion: () => Promise<GetNodeVersionReturnType>;
                                                                getTxFee: () => Promise<GetTxFeeReturnType>;
                                                                getVMs: () => Promise<GetVMsReturnType>;
                                                                isBootstrapped: (args: IsBootstrappedParameters) => Promise<IsBootstrappedReturnType>;
                                                                peers: (args: PeersParameters) => Promise<PeersReturnType>;
                                                                upgrades: () => Promise<UpgradesReturnType>;
                                                                uptime: () => Promise<UptimeReturnType>;
                                                            }

                                                            An Info API Client. InfoApiClient

                                                            -
                                                            • acps: () => Promise<AcpsReturnType>

                                                              Returns peer preferences for Avalanche Community Proposals (ACPs).

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const acpPreferences = await client.info.acps() -
                                                              - -
                                                            • extend: <const client extends { [key: string]: unknown }>(
                                                                  fn: (
                                                                      client: {
                                                                          acps: ...;
                                                                          extend: ...;
                                                                          getBlockchainID: ...;
                                                                          getNetworkID: ...;
                                                                          getNetworkName: ...;
                                                                          getNodeID: ...;
                                                                          getNodeIP: ...;
                                                                          getNodeVersion: ...;
                                                                          getTxFee: ...;
                                                                          getVMs: ...;
                                                                          isBootstrapped: ...;
                                                                          peers: ...;
                                                                          upgrades: ...;
                                                                          uptime: ...;
                                                                      },
                                                                  ) => client,
                                                              ) => { [K in (...)
                                                              | (...)
                                                              | (...)]: (...)[(...)] }
                                                            • getBlockchainID: (args: GetBlockchainIDParameters) => Promise<GetBlockchainIDReturnType>

                                                              Given a blockchain's alias, get its ID.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const blockchainID = await client.info.getBlockchainID({
                                                              alias: "X"
                                                              }) -
                                                              - -
                                                            • getNetworkID: () => Promise<GetNetworkIDReturnType>

                                                              Get the ID of the network this node is participating in. -Network ID of 1 = Mainnet, Network ID of 5 = Fuji (testnet).

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const networkID = await client.info.getNetworkID() -
                                                              - -
                                                            • getNetworkName: () => Promise<GetNetworkNameReturnType>

                                                              Get the name of the network this node is participating in.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const networkName = await client.info.getNetworkName() -
                                                              - -
                                                            • getNodeID: () => Promise<GetNodeIDReturnType>

                                                              Get the ID, the BLS key, and the proof of possession of this node. -Note: This endpoint is only available on specific nodes, not on public servers.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const nodeInfo = await client.info.getNodeID() -
                                                              - -
                                                            • getNodeIP: () => Promise<GetNodeIPReturnType>

                                                              Get the IP address of this node.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const nodeIP = await client.info.getNodeIP() -
                                                              - -
                                                            • getNodeVersion: () => Promise<GetNodeVersionReturnType>
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const nodeVersion = await client.info.getNodeVersion() -
                                                              - -
                                                            • getTxFee: () => Promise<GetTxFeeReturnType>

                                                              Get the transaction fee for this node.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const txFee = await client.info.getTxFee() -
                                                              - -
                                                            • getVMs: () => Promise<GetVMsReturnType>

                                                              Get the virtual machines (VMs) this node is running.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const vms = await client.info.getVMs() -
                                                              - -
                                                            • isBootstrapped: (args: IsBootstrappedParameters) => Promise<IsBootstrappedReturnType>

                                                              Check whether a given chain is done bootstrapping.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const isBootstrapped = await client.info.isBootstrapped({
                                                              chain: "X"
                                                              }) -
                                                              - -
                                                            • peers: (args: PeersParameters) => Promise<PeersReturnType>

                                                              Get a description of peer connections.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const peers = await client.info.peers({
                                                              nodeIDs: []
                                                              }) -
                                                              - -
                                                            • upgrades: () => Promise<UpgradesReturnType>

                                                              Returns the upgrade history and configuration of the network.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const upgrades = await client.info.upgrades() -
                                                              - -
                                                            • uptime: () => Promise<UptimeReturnType>

                                                              Returns the network's observed uptime of this node. -This is the only reliable source of data for your node's uptime.

                                                              - -
                                                              import { createAvalancheClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createAvalancheClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              const uptime = await client.info.uptime() -
                                                              - -
                                                            import { createInfoApiClient} from '@avalanche-sdk/client'
                                                            import { avalanche } from '@avalanche-sdk/client/chains'

                                                            const client = createInfoApiClient({
                                                            chain: avalanche,
                                                            transport: {
                                                            type: "http",
                                                            },
                                                            })

                                                            // Get info
                                                            const info = await client.getNetworkID() -
                                                            - -
                                                          diff --git a/client/docs/functions/index.createPChainClient.html b/client/docs/functions/index.createPChainClient.html deleted file mode 100644 index eb67a17a..00000000 --- a/client/docs/functions/index.createPChainClient.html +++ /dev/null @@ -1,211 +0,0 @@ -createPChainClient | Avalanche SDK Client
                                                          Avalanche SDK Client
                                                            Preparing search index...

                                                            Function createPChainClient

                                                            • Creates a P-Chain (Platform Chain) Client with a given transport configured for a Chain.

                                                              -

                                                              The P-Chain Client is an interface to interact with the Avalanche Platform Chain through JSON-RPC API methods. -The Platform Chain is responsible for:

                                                              -
                                                                -
                                                              • Coordinating validators
                                                              • -
                                                              • Managing subnets
                                                              • -
                                                              • Creating and managing blockchains
                                                              • -
                                                              • Handling staking operations
                                                              • -
                                                              -

                                                              Type Parameters

                                                              • transport extends Transport
                                                              • chain extends undefined | Chain = undefined
                                                              • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                                              • rpcSchema extends undefined | RpcSchema = undefined
                                                              • raw extends boolean = false

                                                              Parameters

                                                              Returns {
                                                                  extend: <const client extends { [key: string]: unknown }>(
                                                                      fn: (
                                                                          client: {
                                                                              extend: ...;
                                                                              getBalance: ...;
                                                                              getBlock: ...;
                                                                              getBlockByHeight: ...;
                                                                              getBlockchains: ...;
                                                                              getBlockchainStatus: ...;
                                                                              getCurrentSupply: ...;
                                                                              getCurrentValidators: ...;
                                                                              getFeeConfig: ...;
                                                                              getFeeState: ...;
                                                                              getHeight: ...;
                                                                              getL1Validator: ...;
                                                                              getMinStake: ...;
                                                                              getProposedHeight: ...;
                                                                              getRewardUTXOs: ...;
                                                                              getStake: ...;
                                                                              getStakingAssetID: ...;
                                                                              getSubnet: ...;
                                                                              getSubnets: ...;
                                                                              getTimestamp: ...;
                                                                              getTotalStake: ...;
                                                                              getTx: ...;
                                                                              getTxStatus: ...;
                                                                              getUTXOs: ...;
                                                                              getValidatorsAt: ...;
                                                                              issueTx: ...;
                                                                              sampleValidators: ...;
                                                                              validatedBy: ...;
                                                                              validates: ...;
                                                                          },
                                                                      ) => client,
                                                                  ) => { [K in (...)
                                                                  | (...)
                                                                  | (...)]: (...)[(...)] };
                                                                  getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>;
                                                                  getBlock: (args: GetBlockParameters) => Promise<PChainBlockType>;
                                                                  getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<PChainBlockType>;
                                                                  getBlockchains: () => Promise<GetBlockchainsReturnType>;
                                                                  getBlockchainStatus: (args: GetBlockchainStatusParameters) => Promise<GetBlockchainStatusReturnType>;
                                                                  getCurrentSupply: (args: GetCurrentSupplyParameters) => Promise<GetCurrentSupplyReturnType>;
                                                                  getCurrentValidators: (args: GetCurrentValidatorsParameters) => Promise<GetCurrentValidatorsReturnType>;
                                                                  getFeeConfig: () => Promise<GetFeeConfigReturnType>;
                                                                  getFeeState: () => Promise<GetFeeStateReturnType>;
                                                                  getHeight: () => Promise<GetHeightReturnType>;
                                                                  getL1Validator: (args: GetL1ValidatorParameters) => Promise<GetL1ValidatorReturnType>;
                                                                  getMinStake: (args: GetMinStakeParameters) => Promise<GetMinStakeReturnType>;
                                                                  getProposedHeight: () => Promise<GetProposedHeightReturnType>;
                                                                  getRewardUTXOs: (args: GetRewardUTXOsParameters) => Promise<GetRewardUTXOsReturnType>;
                                                                  getStake: (args: GetStakeParameters) => Promise<GetStakeReturnType>;
                                                                  getStakingAssetID: (args: GetStakingAssetIDParameters) => Promise<GetStakingAssetIDReturnType>;
                                                                  getSubnet: (args: GetSubnetParameters) => Promise<GetSubnetReturnType>;
                                                                  getSubnets: (args: GetSubnetsParameters) => Promise<GetSubnetsReturnType>;
                                                                  getTimestamp: () => Promise<GetTimestampReturnType>;
                                                                  getTotalStake: (args: GetTotalStakeParameters) => Promise<GetTotalStakeReturnType>;
                                                                  getTx: (args: GetTxParameters) => Promise<PChainTransactionType>;
                                                                  getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>;
                                                                  getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>;
                                                                  getValidatorsAt: (args: GetValidatorsAtParameters) => Promise<GetValidatorsAtReturnType>;
                                                                  issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>;
                                                                  sampleValidators: (args: SampleValidatorsParameters) => Promise<SampleValidatorsReturnType>;
                                                                  validatedBy: (args: ValidatedByParameters) => Promise<ValidatedByReturnType>;
                                                                  validates: (args: ValidatesParameters) => Promise<ValidatesReturnType>;
                                                              }

                                                              A P-Chain Client. PChainClient

                                                              -
                                                              • extend: <const client extends { [key: string]: unknown }>(
                                                                    fn: (
                                                                        client: {
                                                                            extend: ...;
                                                                            getBalance: ...;
                                                                            getBlock: ...;
                                                                            getBlockByHeight: ...;
                                                                            getBlockchains: ...;
                                                                            getBlockchainStatus: ...;
                                                                            getCurrentSupply: ...;
                                                                            getCurrentValidators: ...;
                                                                            getFeeConfig: ...;
                                                                            getFeeState: ...;
                                                                            getHeight: ...;
                                                                            getL1Validator: ...;
                                                                            getMinStake: ...;
                                                                            getProposedHeight: ...;
                                                                            getRewardUTXOs: ...;
                                                                            getStake: ...;
                                                                            getStakingAssetID: ...;
                                                                            getSubnet: ...;
                                                                            getSubnets: ...;
                                                                            getTimestamp: ...;
                                                                            getTotalStake: ...;
                                                                            getTx: ...;
                                                                            getTxStatus: ...;
                                                                            getUTXOs: ...;
                                                                            getValidatorsAt: ...;
                                                                            issueTx: ...;
                                                                            sampleValidators: ...;
                                                                            validatedBy: ...;
                                                                            validates: ...;
                                                                        },
                                                                    ) => client,
                                                                ) => { [K in (...)
                                                                | (...)
                                                                | (...)]: (...)[(...)] }
                                                              • getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>

                                                                Get the balance of AVAX controlled by a given address.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const balance = await client.pChain.getBalance({
                                                                addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"]
                                                                }) -
                                                                - -
                                                              • getBlock: (args: GetBlockParameters) => Promise<PChainBlockType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const block = await client.pChain.getBlock({
                                                                blockID: "d7WYmb8VeZNHsny3EJCwMm6QA37s1EHwMxw1Y71V3FqPZ5EFG",
                                                                encoding: "hex"
                                                                }) -
                                                                - -
                                                              • getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<PChainBlockType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const block = await client.pChain.getBlockByHeight({
                                                                height: 1000001,
                                                                encoding: "hex"
                                                                }) -
                                                                - -
                                                              • getBlockchains: () => Promise<GetBlockchainsReturnType>

                                                                Get all the blockchains that exist (excluding the P-Chain).

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const blockchains = await client.pChain.getBlockchains() -
                                                                - -
                                                              • getBlockchainStatus: (args: GetBlockchainStatusParameters) => Promise<GetBlockchainStatusReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const status = await client.pChain.getBlockchainStatus({
                                                                blockchainID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getCurrentSupply: (args: GetCurrentSupplyParameters) => Promise<GetCurrentSupplyReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const supply = await client.pChain.getCurrentSupply({
                                                                assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                }) -
                                                                - -
                                                              • getCurrentValidators: (args: GetCurrentValidatorsParameters) => Promise<GetCurrentValidatorsReturnType>

                                                                Get the current validators of the specified Subnet.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const validators = await client.pChain.getCurrentValidators({
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getFeeConfig: () => Promise<GetFeeConfigReturnType>

                                                                Get the fee configuration for the P-Chain.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const feeConfig = await client.pChain.getFeeConfig() -
                                                                - -
                                                              • getFeeState: () => Promise<GetFeeStateReturnType>

                                                                Get the current fee state of the P-Chain.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const feeState = await client.pChain.getFeeState() -
                                                                - -
                                                              • getHeight: () => Promise<GetHeightReturnType>

                                                                Get the height of the last accepted block.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const height = await client.pChain.getHeight() -
                                                                - -
                                                              • getL1Validator: (args: GetL1ValidatorParameters) => Promise<GetL1ValidatorReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const validator = await client.pChain.getL1Validator({
                                                                nodeID: "NodeID-111111111111111111111111111111111111111"
                                                                }) -
                                                                - -
                                                              • getMinStake: (args: GetMinStakeParameters) => Promise<GetMinStakeReturnType>

                                                                Get the minimum stake amount for a subnet.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const minStake = await client.pChain.getMinStake({
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getProposedHeight: () => Promise<GetProposedHeightReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const proposedHeight = await client.pChain.getProposedHeight() -
                                                                - -
                                                              • getRewardUTXOs: (args: GetRewardUTXOsParameters) => Promise<GetRewardUTXOsReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const rewardUTXOs = await client.pChain.getRewardUTXOs({
                                                                txID: "11111111111111111111111111111111LpoYY",
                                                                encoding: "hex"
                                                                }) -
                                                                - -
                                                              • getStake: (args: GetStakeParameters) => Promise<GetStakeReturnType>

                                                                Get the stake amount for a set of addresses.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const stake = await client.pChain.getStake({
                                                                addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"],
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getStakingAssetID: (args: GetStakingAssetIDParameters) => Promise<GetStakingAssetIDReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const stakingAssetID = await client.pChain.getStakingAssetID({
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getSubnet: (args: GetSubnetParameters) => Promise<GetSubnetReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const subnet = await client.pChain.getSubnet({
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getSubnets: (args: GetSubnetsParameters) => Promise<GetSubnetsReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const subnets = await client.pChain.getSubnets() -
                                                                - -
                                                              • getTimestamp: () => Promise<GetTimestampReturnType>

                                                                Get the current timestamp of the P-Chain.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const timestamp = await client.pChain.getTimestamp() -
                                                                - -
                                                              • getTotalStake: (args: GetTotalStakeParameters) => Promise<GetTotalStakeReturnType>

                                                                Get the total stake amount for a subnet.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const totalStake = await client.pChain.getTotalStake({
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getTx: (args: GetTxParameters) => Promise<PChainTransactionType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const tx = await client.pChain.getTx({
                                                                txID: "11111111111111111111111111111111LpoYY",
                                                                encoding: "hex"
                                                                }) -
                                                                - -
                                                              • getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const status = await client.pChain.getTxStatus({
                                                                txID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>

                                                                Get the UTXOs for a set of addresses.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const utxos = await client.pChain.getUTXOs({
                                                                addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"],
                                                                sourceChain: "X"
                                                                }) -
                                                                - -
                                                              • getValidatorsAt: (args: GetValidatorsAtParameters) => Promise<GetValidatorsAtReturnType>

                                                                Get the validators at a specific height.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const validators = await client.pChain.getValidatorsAt({
                                                                height: 1000001,
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>

                                                                Issue a transaction to the Platform Chain.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const txID = await client.pChain.issueTx({
                                                                tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                encoding: "hex"
                                                                }) -
                                                                - -
                                                              • sampleValidators: (args: SampleValidatorsParameters) => Promise<SampleValidatorsReturnType>

                                                                Sample validators from the specified Subnet.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const validators = await client.pChain.sampleValidators({
                                                                size: 2,
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • validatedBy: (args: ValidatedByParameters) => Promise<ValidatedByReturnType>

                                                                Get the Subnet that validates a given blockchain.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const subnetID = await client.pChain.validatedBy({
                                                                blockchainID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              • validates: (args: ValidatesParameters) => Promise<ValidatesReturnType>

                                                                Get the IDs of the blockchains a Subnet validates.

                                                                - -
                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createAvalancheClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                const blockchainIDs = await client.pChain.validates({
                                                                subnetID: "11111111111111111111111111111111LpoYY"
                                                                }) -
                                                                - -
                                                              import { createPChainClient} from '@avalanche-sdk/client'
                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                              const client = createPChainClient({
                                                              chain: avalanche,
                                                              transport: {
                                                              type: "http",
                                                              },
                                                              })

                                                              // Get the current validators
                                                              const validators = await client.getCurrentValidators({})

                                                              // Get subnet information
                                                              const subnet = await client.getSubnet({ subnetID: 'subnet-id' }) -
                                                              - -
                                                            diff --git a/client/docs/functions/index.createXChainClient.html b/client/docs/functions/index.createXChainClient.html deleted file mode 100644 index 9ccfcb2f..00000000 --- a/client/docs/functions/index.createXChainClient.html +++ /dev/null @@ -1,99 +0,0 @@ -createXChainClient | Avalanche SDK Client
                                                            Avalanche SDK Client
                                                              Preparing search index...

                                                              Function createXChainClient

                                                              • Creates an X-Chain (Exchange Chain) Client with a given transport configured for a Chain.

                                                                -

                                                                The X-Chain Client is an interface to interact with the Avalanche Exchange Chain through JSON-RPC API methods. -The Exchange Chain is responsible for:

                                                                -
                                                                  -
                                                                • Creating and trading digital assets
                                                                • -
                                                                • Managing asset transfers
                                                                • -
                                                                • Handling atomic swaps
                                                                • -
                                                                • Creating and managing custom assets
                                                                • -
                                                                -

                                                                Type Parameters

                                                                • transport extends Transport
                                                                • chain extends undefined | Chain = undefined
                                                                • accountOrAddress extends undefined | `0x${string}` | Account = undefined
                                                                • rpcSchema extends undefined | RpcSchema = undefined
                                                                • raw extends boolean = false

                                                                Parameters

                                                                Returns {
                                                                    buildGenesis: (args: BuildGenesisParameters) => Promise<BuildGenesisReturnType>;
                                                                    extend: <const client extends { [key: string]: unknown }>(
                                                                        fn: (
                                                                            client: {
                                                                                buildGenesis: ...;
                                                                                extend: ...;
                                                                                getAllBalances: ...;
                                                                                getAssetDescription: ...;
                                                                                getBalance: ...;
                                                                                getBlock: ...;
                                                                                getBlockByHeight: ...;
                                                                                getHeight: ...;
                                                                                getTx: ...;
                                                                                getTxFee: ...;
                                                                                getTxStatus: ...;
                                                                                getUTXOs: ...;
                                                                                issueTx: ...;
                                                                            },
                                                                        ) => client,
                                                                    ) => { [K in (...)
                                                                    | (...)
                                                                    | (...)]: (...)[(...)] };
                                                                    getAllBalances: (args: GetAllBalancesParameters) => Promise<GetAllBalancesReturnType>;
                                                                    getAssetDescription: (args: GetAssetDescriptionParameters) => Promise<GetAssetDescriptionReturnType>;
                                                                    getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>;
                                                                    getBlock: (args: GetBlockParameters) => Promise<XChainBlockType>;
                                                                    getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<XChainBlockType>;
                                                                    getHeight: () => Promise<GetHeightReturnType>;
                                                                    getTx: (args: GetTxParameters) => Promise<XChainTransactionType>;
                                                                    getTxFee: () => Promise<GetTxFeeReturnType>;
                                                                    getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>;
                                                                    getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>;
                                                                    issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>;
                                                                }

                                                                An X-Chain Client. XChainClient

                                                                -
                                                                • buildGenesis: (args: BuildGenesisParameters) => Promise<BuildGenesisReturnType>

                                                                  Given a JSON representation of this Virtual Machine's genesis state, create the byte representation of that state.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const genesis = await client.xChain.buildGenesis({
                                                                  networkID: 16,
                                                                  genesisData: {
                                                                  asset1: {
                                                                  name: "myFixedCapAsset",
                                                                  symbol: "MFCA",
                                                                  initialState: {
                                                                  fixedCap: [
                                                                  {
                                                                  amount: 100000,
                                                                  address: "avax13ery2kvdrkd2nkquvs892gl8hg7mq4a6ufnrn6"
                                                                  }
                                                                  ]
                                                                  }
                                                                  }
                                                                  }
                                                                  }) -
                                                                  - -
                                                                • extend: <const client extends { [key: string]: unknown }>(
                                                                      fn: (
                                                                          client: {
                                                                              buildGenesis: ...;
                                                                              extend: ...;
                                                                              getAllBalances: ...;
                                                                              getAssetDescription: ...;
                                                                              getBalance: ...;
                                                                              getBlock: ...;
                                                                              getBlockByHeight: ...;
                                                                              getHeight: ...;
                                                                              getTx: ...;
                                                                              getTxFee: ...;
                                                                              getTxStatus: ...;
                                                                              getUTXOs: ...;
                                                                              issueTx: ...;
                                                                          },
                                                                      ) => client,
                                                                  ) => { [K in (...)
                                                                  | (...)
                                                                  | (...)]: (...)[(...)] }
                                                                • getAllBalances: (args: GetAllBalancesParameters) => Promise<GetAllBalancesReturnType>

                                                                  Get the balances of all assets controlled by given addresses.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const balances = await client.xChain.getAllBalances({
                                                                  addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"]
                                                                  }) -
                                                                  - -
                                                                • getAssetDescription: (args: GetAssetDescriptionParameters) => Promise<GetAssetDescriptionReturnType>
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const asset = await client.xChain.getAssetDescription({
                                                                  assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                  }) -
                                                                  - -
                                                                • getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>

                                                                  Get the balance of an asset controlled by given addresses.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const balance = await client.xChain.getBalance({
                                                                  addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"],
                                                                  assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                  }) -
                                                                  - -
                                                                • getBlock: (args: GetBlockParameters) => Promise<XChainBlockType>
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const block = await client.xChain.getBlock({
                                                                  blockID: "d7WYmb8VeZNHsny3EJCwMm6QA37s1EHwMxw1Y71V3FqPZ5EFG",
                                                                  encoding: "hex"
                                                                  }) -
                                                                  - -
                                                                • getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<XChainBlockType>
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const block = await client.xChain.getBlockByHeight({
                                                                  height: 1000001,
                                                                  encoding: "hex"
                                                                  }) -
                                                                  - -
                                                                • getHeight: () => Promise<GetHeightReturnType>

                                                                  Get the height of the last accepted block.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const height = await client.xChain.getHeight() -
                                                                  - -
                                                                • getTx: (args: GetTxParameters) => Promise<XChainTransactionType>
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const tx = await client.xChain.getTx({
                                                                  txID: "11111111111111111111111111111111LpoYY",
                                                                  encoding: "hex"
                                                                  }) -
                                                                  - -
                                                                • getTxFee: () => Promise<GetTxFeeReturnType>

                                                                  Get the transaction fee for this node.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const txFee = await client.xChain.getTxFee() -
                                                                  - -
                                                                • getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const status = await client.xChain.getTxStatus({
                                                                  txID: "11111111111111111111111111111111LpoYY"
                                                                  }) -
                                                                  - -
                                                                • getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>

                                                                  Get the UTXOs for a set of addresses.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const utxos = await client.xChain.getUTXOs({
                                                                  addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"],
                                                                  sourceChain: "P"
                                                                  }) -
                                                                  - -
                                                                • issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>

                                                                  Send a signed transaction to the network.

                                                                  - -
                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                  const client = createAvalancheClient({
                                                                  chain: avalanche,
                                                                  transport: {
                                                                  type: "http",
                                                                  },
                                                                  })

                                                                  const txID = await client.xChain.issueTx({
                                                                  tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                  encoding: "hex"
                                                                  }) -
                                                                  - -
                                                                import { createXChainClient} from '@avalanche-sdk/client'
                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                const client = createXChainClient({
                                                                chain: avalanche,
                                                                transport: {
                                                                type: "http",
                                                                },
                                                                })

                                                                // Get asset information
                                                                const asset = await client.getAssetDescription({ assetID: 'asset-id' })

                                                                // Get balance for an address
                                                                const balance = await client.getBalance({ address: 'X-avax...' }) -
                                                                - -
                                                              diff --git a/client/docs/functions/index.erc20Actions.html b/client/docs/functions/index.erc20Actions.html deleted file mode 100644 index d5831877..00000000 --- a/client/docs/functions/index.erc20Actions.html +++ /dev/null @@ -1 +0,0 @@ -erc20Actions | Avalanche SDK Client
                                                              Avalanche SDK Client
                                                                Preparing search index...

                                                                Function erc20Actions

                                                                diff --git a/client/docs/functions/index.healthAPIActions.html b/client/docs/functions/index.healthAPIActions.html deleted file mode 100644 index 9ab0b873..00000000 --- a/client/docs/functions/index.healthAPIActions.html +++ /dev/null @@ -1 +0,0 @@ -healthAPIActions | Avalanche SDK Client
                                                                Avalanche SDK Client
                                                                  Preparing search index...

                                                                  Function healthAPIActions

                                                                  • Type Parameters

                                                                    • chain extends undefined | Chain = undefined | Chain

                                                                    Parameters

                                                                    • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                    Returns HealthAPIActions

                                                                  diff --git a/client/docs/functions/index.indexAPIActions.html b/client/docs/functions/index.indexAPIActions.html deleted file mode 100644 index 85f8a10f..00000000 --- a/client/docs/functions/index.indexAPIActions.html +++ /dev/null @@ -1 +0,0 @@ -indexAPIActions | Avalanche SDK Client
                                                                  Avalanche SDK Client
                                                                    Preparing search index...

                                                                    Function indexAPIActions

                                                                    • Type Parameters

                                                                      • chain extends undefined | Chain = undefined | Chain

                                                                      Parameters

                                                                      • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                      Returns IndexAPIActions

                                                                    diff --git a/client/docs/functions/index.infoAPIActions.html b/client/docs/functions/index.infoAPIActions.html deleted file mode 100644 index 7ea1d546..00000000 --- a/client/docs/functions/index.infoAPIActions.html +++ /dev/null @@ -1 +0,0 @@ -infoAPIActions | Avalanche SDK Client
                                                                    Avalanche SDK Client
                                                                      Preparing search index...

                                                                      Function infoAPIActions

                                                                      • Type Parameters

                                                                        • chain extends undefined | Chain = undefined | Chain

                                                                        Parameters

                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                        Returns InfoAPIActions

                                                                      diff --git a/client/docs/functions/index.pChainActions.html b/client/docs/functions/index.pChainActions.html deleted file mode 100644 index b003bd5b..00000000 --- a/client/docs/functions/index.pChainActions.html +++ /dev/null @@ -1 +0,0 @@ -pChainActions | Avalanche SDK Client
                                                                      Avalanche SDK Client
                                                                        Preparing search index...

                                                                        Function pChainActions

                                                                        • Type Parameters

                                                                          • chain extends undefined | Chain = undefined | Chain

                                                                          Parameters

                                                                          • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                          Returns PChainActions

                                                                        diff --git a/client/docs/functions/index.xChainActions.html b/client/docs/functions/index.xChainActions.html deleted file mode 100644 index eb13b5cd..00000000 --- a/client/docs/functions/index.xChainActions.html +++ /dev/null @@ -1 +0,0 @@ -xChainActions | Avalanche SDK Client
                                                                        Avalanche SDK Client
                                                                          Preparing search index...

                                                                          Function xChainActions

                                                                          • Type Parameters

                                                                            • chain extends undefined | Chain = undefined | Chain

                                                                            Parameters

                                                                            • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                            Returns XChainActions

                                                                          diff --git a/client/docs/functions/methods_admin.alias.html b/client/docs/functions/methods_admin.alias.html deleted file mode 100644 index fd5abc57..00000000 --- a/client/docs/functions/methods_admin.alias.html +++ /dev/null @@ -1,12 +0,0 @@ -alias | Avalanche SDK Client
                                                                          Avalanche SDK Client
                                                                            Preparing search index...

                                                                            Function alias

                                                                            • Assign an API endpoint an alias, a different endpoint for the API. -The original endpoint will still work. This change only affects this node.

                                                                              - -

                                                                              Type Parameters

                                                                              • chain extends undefined | Chain

                                                                              Parameters

                                                                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                The client to use. AvalancheCoreClient

                                                                                -
                                                                              • params: AliasParameters

                                                                                The endpoint and alias. AliasParameters

                                                                                -

                                                                              Returns Promise<void>

                                                                              Promise that resolves when the alias is set

                                                                              -
                                                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                              import { alias } from '@avalanche-sdk/client/methods/admin'

                                                                              const client = createAvalancheCoreClient({
                                                                              chain: avalanche,
                                                                              transport: {
                                                                              type: "http",
                                                                              url: "<url>",
                                                                              },
                                                                              });

                                                                              await alias(client, {
                                                                              endpoint: "bc/X",
                                                                              alias: "myAlias"
                                                                              }); -
                                                                              - -
                                                                            diff --git a/client/docs/functions/methods_admin.aliasChain.html b/client/docs/functions/methods_admin.aliasChain.html deleted file mode 100644 index c4f33039..00000000 --- a/client/docs/functions/methods_admin.aliasChain.html +++ /dev/null @@ -1,12 +0,0 @@ -aliasChain | Avalanche SDK Client
                                                                            Avalanche SDK Client
                                                                              Preparing search index...

                                                                              Function aliasChain

                                                                              • Give a blockchain an alias, a different name that can be used any place the blockchain's ID is used. -Note: The alias is set for each chain on each node individually.

                                                                                - -

                                                                                Type Parameters

                                                                                • chain extends undefined | Chain

                                                                                Parameters

                                                                                Returns Promise<void>

                                                                                Promise that resolves when the chain alias is set

                                                                                -
                                                                                import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                import { aliasChain } from '@avalanche-sdk/client/methods/admin'

                                                                                const client = createAvalancheCoreClient({
                                                                                chain: avalanche,
                                                                                transport: {
                                                                                type: "http",
                                                                                url: "<url>",
                                                                                },
                                                                                });

                                                                                await aliasChain(client, {
                                                                                chain: "sV6o671RtkGBcno1FiaDbVcFv2sG5aVXMZYzKdP4VQAWmJQnM",
                                                                                alias: "myBlockchainAlias"
                                                                                }); -
                                                                                - -
                                                                              diff --git a/client/docs/functions/methods_admin.getChainAliases.html b/client/docs/functions/methods_admin.getChainAliases.html deleted file mode 100644 index 27cd0b8e..00000000 --- a/client/docs/functions/methods_admin.getChainAliases.html +++ /dev/null @@ -1,11 +0,0 @@ -getChainAliases | Avalanche SDK Client
                                                                              Avalanche SDK Client
                                                                                Preparing search index...

                                                                                Function getChainAliases

                                                                                diff --git a/client/docs/functions/methods_admin.getLoggerLevel.html b/client/docs/functions/methods_admin.getLoggerLevel.html deleted file mode 100644 index d8bf2a1d..00000000 --- a/client/docs/functions/methods_admin.getLoggerLevel.html +++ /dev/null @@ -1,11 +0,0 @@ -getLoggerLevel | Avalanche SDK Client
                                                                                Avalanche SDK Client
                                                                                  Preparing search index...

                                                                                  Function getLoggerLevel

                                                                                  diff --git a/client/docs/functions/methods_admin.loadVMs.html b/client/docs/functions/methods_admin.loadVMs.html deleted file mode 100644 index 3126d9e7..00000000 --- a/client/docs/functions/methods_admin.loadVMs.html +++ /dev/null @@ -1,10 +0,0 @@ -loadVMs | Avalanche SDK Client
                                                                                  Avalanche SDK Client
                                                                                    Preparing search index...

                                                                                    Function loadVMs

                                                                                    • Dynamically loads any virtual machines installed on the node as plugins.

                                                                                      - -

                                                                                      Type Parameters

                                                                                      • chain extends undefined | Chain

                                                                                      Parameters

                                                                                      • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                        The client to use. AvalancheCoreClient

                                                                                        -

                                                                                      Returns Promise<LoadVMsReturnType>

                                                                                      The virtual machines installed on the node. LoadVMsReturnType

                                                                                      -
                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                      import { loadVMs } from '@avalanche-sdk/client/methods/admin'

                                                                                      const client = createAvalancheCoreClient({
                                                                                      chain: avalanche,
                                                                                      transport: {
                                                                                      type: "http",
                                                                                      url: "<url>",
                                                                                      },
                                                                                      });

                                                                                      const vms = await loadVMs(client); -
                                                                                      - -
                                                                                    diff --git a/client/docs/functions/methods_admin.lockProfile.html b/client/docs/functions/methods_admin.lockProfile.html deleted file mode 100644 index 9ea716ad..00000000 --- a/client/docs/functions/methods_admin.lockProfile.html +++ /dev/null @@ -1,10 +0,0 @@ -lockProfile | Avalanche SDK Client
                                                                                    Avalanche SDK Client
                                                                                      Preparing search index...

                                                                                      Function lockProfile

                                                                                      • Writes a profile of mutex statistics to lock.profile.

                                                                                        - -

                                                                                        Type Parameters

                                                                                        • chain extends undefined | Chain

                                                                                        Parameters

                                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                          The client to use. AvalancheCoreClient

                                                                                          -

                                                                                        Returns Promise<void>

                                                                                        Promise that resolves when the profile is written

                                                                                        -
                                                                                        import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                        import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                        import { lockProfile } from '@avalanche-sdk/client/methods/admin'

                                                                                        const client = createAvalancheCoreClient({
                                                                                        chain: avalanche,
                                                                                        transport: {
                                                                                        type: "http",
                                                                                        url: "<url>",
                                                                                        },
                                                                                        });

                                                                                        await lockProfile(client); -
                                                                                        - -
                                                                                      diff --git a/client/docs/functions/methods_admin.memoryProfile.html b/client/docs/functions/methods_admin.memoryProfile.html deleted file mode 100644 index 31a49590..00000000 --- a/client/docs/functions/methods_admin.memoryProfile.html +++ /dev/null @@ -1,10 +0,0 @@ -memoryProfile | Avalanche SDK Client
                                                                                      Avalanche SDK Client
                                                                                        Preparing search index...

                                                                                        Function memoryProfile

                                                                                        • Writes a memory profile of the node to mem.profile.

                                                                                          - -

                                                                                          Type Parameters

                                                                                          • chain extends undefined | Chain

                                                                                          Parameters

                                                                                          • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                            The client to use. AvalancheCoreClient

                                                                                            -

                                                                                          Returns Promise<void>

                                                                                          Promise that resolves when the profile is written

                                                                                          -
                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                          import { memoryProfile } from '@avalanche-sdk/client/methods/admin'

                                                                                          const client = createAvalancheCoreClient({
                                                                                          chain: avalanche,
                                                                                          transport: {
                                                                                          type: "http",
                                                                                          url: "<url>",
                                                                                          },
                                                                                          });

                                                                                          await memoryProfile(client); -
                                                                                          - -
                                                                                        diff --git a/client/docs/functions/methods_admin.setLoggerLevel.html b/client/docs/functions/methods_admin.setLoggerLevel.html deleted file mode 100644 index 020e85fb..00000000 --- a/client/docs/functions/methods_admin.setLoggerLevel.html +++ /dev/null @@ -1,11 +0,0 @@ -setLoggerLevel | Avalanche SDK Client
                                                                                        Avalanche SDK Client
                                                                                          Preparing search index...

                                                                                          Function setLoggerLevel

                                                                                          • Sets log and display levels of loggers.

                                                                                            - -

                                                                                            Type Parameters

                                                                                            • chain extends undefined | Chain

                                                                                            Parameters

                                                                                            Returns Promise<void>

                                                                                            Promise that resolves when the logger levels are set

                                                                                            -
                                                                                            import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                            import { setLoggerLevel } from '@avalanche-sdk/client/methods/admin'

                                                                                            const client = createAvalancheCoreClient({
                                                                                            chain: avalanche,
                                                                                            transport: {
                                                                                            type: "http",
                                                                                            url: "<url>",
                                                                                            },
                                                                                            });

                                                                                            await setLoggerLevel(client, {
                                                                                            loggerName: "C",
                                                                                            logLevel: "DEBUG",
                                                                                            displayLevel: "INFO"
                                                                                            }); -
                                                                                            - -
                                                                                          diff --git a/client/docs/functions/methods_admin.startCPUProfiler.html b/client/docs/functions/methods_admin.startCPUProfiler.html deleted file mode 100644 index 0f01c544..00000000 --- a/client/docs/functions/methods_admin.startCPUProfiler.html +++ /dev/null @@ -1,11 +0,0 @@ -startCPUProfiler | Avalanche SDK Client
                                                                                          Avalanche SDK Client
                                                                                            Preparing search index...

                                                                                            Function startCPUProfiler

                                                                                            • Start profiling the CPU utilization of the node. -To stop, call stopCPUProfiler. On stop, writes the profile to cpu.profile.

                                                                                              - -

                                                                                              Type Parameters

                                                                                              • chain extends undefined | Chain

                                                                                              Parameters

                                                                                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                The client to use. AvalancheCoreClient

                                                                                                -

                                                                                              Returns Promise<void>

                                                                                              Promise that resolves when the profiler is started

                                                                                              -
                                                                                              import { createAvalancheCoreClient} from '@avalanche-sdk/client'
                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                              import { startCPUProfiler } from '@avalanche-sdk/client/methods/admin'

                                                                                              const client = createAvalancheCoreClient({
                                                                                              chain: avalanche,
                                                                                              transport: {
                                                                                              type: "http",
                                                                                              url: "<url>",
                                                                                              },
                                                                                              });

                                                                                              await startCPUProfiler(client); -
                                                                                              - -
                                                                                            diff --git a/client/docs/functions/methods_admin.stopCPUProfiler.html b/client/docs/functions/methods_admin.stopCPUProfiler.html deleted file mode 100644 index 83524424..00000000 --- a/client/docs/functions/methods_admin.stopCPUProfiler.html +++ /dev/null @@ -1,10 +0,0 @@ -stopCPUProfiler | Avalanche SDK Client
                                                                                            Avalanche SDK Client
                                                                                              Preparing search index...

                                                                                              Function stopCPUProfiler

                                                                                              • Stop the CPU profile that was previously started.

                                                                                                - -

                                                                                                Type Parameters

                                                                                                • chain extends undefined | Chain

                                                                                                Parameters

                                                                                                • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                  The client to use. AvalancheCoreClient

                                                                                                  -

                                                                                                Returns Promise<void>

                                                                                                Promise that resolves when the profiler is stopped

                                                                                                -
                                                                                                import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                import { stopCPUProfiler } from '@avalanche-sdk/client/methods/admin'

                                                                                                const client = createAvalancheCoreClient({
                                                                                                chain: avalanche,
                                                                                                transport: {
                                                                                                type: "http",
                                                                                                url: "<url>",
                                                                                                },
                                                                                                });

                                                                                                await stopCPUProfiler(client); -
                                                                                                - -
                                                                                              diff --git a/client/docs/functions/methods_cChain.getAtomicTx.html b/client/docs/functions/methods_cChain.getAtomicTx.html deleted file mode 100644 index 74051d40..00000000 --- a/client/docs/functions/methods_cChain.getAtomicTx.html +++ /dev/null @@ -1,11 +0,0 @@ -getAtomicTx | Avalanche SDK Client
                                                                                              Avalanche SDK Client
                                                                                                Preparing search index...

                                                                                                Function getAtomicTx

                                                                                                diff --git a/client/docs/functions/methods_cChain.getAtomicTxStatus.html b/client/docs/functions/methods_cChain.getAtomicTxStatus.html deleted file mode 100644 index 5edfd395..00000000 --- a/client/docs/functions/methods_cChain.getAtomicTxStatus.html +++ /dev/null @@ -1,11 +0,0 @@ -getAtomicTxStatus | Avalanche SDK Client
                                                                                                Avalanche SDK Client
                                                                                                  Preparing search index...

                                                                                                  Function getAtomicTxStatus

                                                                                                  diff --git a/client/docs/functions/methods_cChain.getUTXOs.html b/client/docs/functions/methods_cChain.getUTXOs.html deleted file mode 100644 index 988d061e..00000000 --- a/client/docs/functions/methods_cChain.getUTXOs.html +++ /dev/null @@ -1,11 +0,0 @@ -getUTXOs | Avalanche SDK Client
                                                                                                  Avalanche SDK Client
                                                                                                    Preparing search index...

                                                                                                    Function getUTXOs

                                                                                                    • Get the UTXOs for a set of addresses.

                                                                                                      - -

                                                                                                      Type Parameters

                                                                                                      • chain extends undefined | Chain

                                                                                                      Parameters

                                                                                                      Returns Promise<GetUTXOsReturnType>

                                                                                                      The UTXOs for a set of addresses. GetUTXOsReturnType

                                                                                                      -
                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                      import { getUTXOs } from '@avalanche-sdk/client/methods/cChain'

                                                                                                      const client = createAvalancheCoreClient({
                                                                                                      chain: avalanche,
                                                                                                      transport: {
                                                                                                      type: "http",
                                                                                                      url: "<url>",
                                                                                                      },
                                                                                                      })

                                                                                                      const utxos = await getUTXOs(client, {
                                                                                                      addresses: ["X-avax1...", "X-avax2..."],
                                                                                                      limit: 100
                                                                                                      }) -
                                                                                                      - -
                                                                                                    diff --git a/client/docs/functions/methods_cChain.issueTx.html b/client/docs/functions/methods_cChain.issueTx.html deleted file mode 100644 index 02f210d2..00000000 --- a/client/docs/functions/methods_cChain.issueTx.html +++ /dev/null @@ -1,11 +0,0 @@ -issueTx | Avalanche SDK Client
                                                                                                    Avalanche SDK Client
                                                                                                      Preparing search index...

                                                                                                      Function issueTx

                                                                                                      • Issue a transaction to the C-Chain.

                                                                                                        - -

                                                                                                        Type Parameters

                                                                                                        • chain extends undefined | Chain

                                                                                                        Parameters

                                                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                          The client to use. AvalancheCoreClient

                                                                                                          -
                                                                                                        • params: IssueTxParameters

                                                                                                          The parameters to use. IssueTxParameters

                                                                                                          -

                                                                                                        Returns Promise<IssueTxReturnType>

                                                                                                        The transaction ID. IssueTxReturnType

                                                                                                        -
                                                                                                        import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                        import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                        import { issueTx } from '@avalanche-sdk/client/methods/cChain'

                                                                                                        const client = createAvalancheCoreClient({
                                                                                                        chain: avalanche,
                                                                                                        transport: {
                                                                                                        type: "http",
                                                                                                        url: "<url>",
                                                                                                        },
                                                                                                        })

                                                                                                        const txID = await issueTx(client, {
                                                                                                        tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                                                        encoding: "hex"
                                                                                                        }) -
                                                                                                        - -
                                                                                                      diff --git a/client/docs/functions/methods_health.health.html b/client/docs/functions/methods_health.health.html deleted file mode 100644 index 11627eea..00000000 --- a/client/docs/functions/methods_health.health.html +++ /dev/null @@ -1,12 +0,0 @@ -health | Avalanche SDK Client
                                                                                                      Avalanche SDK Client
                                                                                                        Preparing search index...

                                                                                                        Function health

                                                                                                        • Returns the last set of health check results for the node. -This includes checks for all chains, network, database, and other components.

                                                                                                          - -

                                                                                                          Type Parameters

                                                                                                          • chain extends undefined | Chain

                                                                                                          Parameters

                                                                                                          • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                            The client to use. AvalancheCoreClient

                                                                                                            -
                                                                                                          • params: HealthParameters

                                                                                                            Optional tags to filter health checks. HealthParameters

                                                                                                            -

                                                                                                          Returns Promise<HealthReturnType>

                                                                                                          The health check results. HealthReturnType

                                                                                                          -
                                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                          import { health } from '@avalanche-sdk/client/methods/health'

                                                                                                          const client = createAvalancheCoreClient({
                                                                                                          chain: avalanche,
                                                                                                          transport: {
                                                                                                          type: "http",
                                                                                                          url: "<url>",
                                                                                                          },
                                                                                                          })

                                                                                                          const healthStatus = await health(client, {
                                                                                                          tags: ["11111111111111111111111111111111LpoYY", "29uVeLPJB1eQJkzRemU8g8wZDw5uJRqpab5U2mX9euieVwiEbL"]
                                                                                                          })
                                                                                                          -
                                                                                                          - -
                                                                                                        diff --git a/client/docs/functions/methods_health.liveness.html b/client/docs/functions/methods_health.liveness.html deleted file mode 100644 index 3c78a18b..00000000 --- a/client/docs/functions/methods_health.liveness.html +++ /dev/null @@ -1,11 +0,0 @@ -liveness | Avalanche SDK Client
                                                                                                        Avalanche SDK Client
                                                                                                          Preparing search index...

                                                                                                          Function liveness

                                                                                                          • Returns a simple health check indicating if the node is alive and can handle requests. -This is a lightweight check that always returns healthy if the endpoint is available.

                                                                                                            - -

                                                                                                            Type Parameters

                                                                                                            • chain extends undefined | Chain

                                                                                                            Parameters

                                                                                                            • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                              The client to use. AvalancheCoreClient

                                                                                                              -

                                                                                                            Returns Promise<LivenessReturnType>

                                                                                                            The liveness check results. LivenessReturnType

                                                                                                            -
                                                                                                            import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                            import { liveness } from '@avalanche-sdk/client/methods/health'

                                                                                                            const client = createAvalancheCoreClient({
                                                                                                            chain: avalanche,
                                                                                                            transport: {
                                                                                                            type: "http",
                                                                                                            url: "<url>",
                                                                                                            },
                                                                                                            })

                                                                                                            const livenessStatus = await liveness(client) -
                                                                                                            - -
                                                                                                          diff --git a/client/docs/functions/methods_health.readiness.html b/client/docs/functions/methods_health.readiness.html deleted file mode 100644 index 9c5eb9d2..00000000 --- a/client/docs/functions/methods_health.readiness.html +++ /dev/null @@ -1,12 +0,0 @@ -readiness | Avalanche SDK Client
                                                                                                          Avalanche SDK Client
                                                                                                            Preparing search index...

                                                                                                            Function readiness

                                                                                                            • Returns the last evaluation of the startup health check results. -This indicates if the node has finished initializing and is ready to handle requests.

                                                                                                              - -

                                                                                                              Type Parameters

                                                                                                              • chain extends undefined | Chain

                                                                                                              Parameters

                                                                                                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                The client to use. AvalancheCoreClient

                                                                                                                -
                                                                                                              • params: ReadinessParameters

                                                                                                                Optional tags to filter readiness checks. ReadinessParameters

                                                                                                                -

                                                                                                              Returns Promise<ReadinessReturnType>

                                                                                                              The readiness check results. ReadinessReturnType

                                                                                                              -
                                                                                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                              import { readiness } from '@avalanche-sdk/client/methods/health'

                                                                                                              const client = createAvalancheCoreClient({
                                                                                                              chain: avalanche,
                                                                                                              transport: {
                                                                                                              type: "http",
                                                                                                              url: "<url>",
                                                                                                              },
                                                                                                              })

                                                                                                              const readinessStatus = await readiness(client, {
                                                                                                              tags: ["11111111111111111111111111111111LpoYY"]
                                                                                                              }) -
                                                                                                              - -
                                                                                                            diff --git a/client/docs/functions/methods_index.getContainerByID.html b/client/docs/functions/methods_index.getContainerByID.html deleted file mode 100644 index 1590adf0..00000000 --- a/client/docs/functions/methods_index.getContainerByID.html +++ /dev/null @@ -1,11 +0,0 @@ -getContainerByID | Avalanche SDK Client
                                                                                                            Avalanche SDK Client
                                                                                                              Preparing search index...

                                                                                                              Function getContainerByID

                                                                                                              diff --git a/client/docs/functions/methods_index.getContainerByIndex.html b/client/docs/functions/methods_index.getContainerByIndex.html deleted file mode 100644 index 09983e1f..00000000 --- a/client/docs/functions/methods_index.getContainerByIndex.html +++ /dev/null @@ -1,11 +0,0 @@ -getContainerByIndex | Avalanche SDK Client
                                                                                                              Avalanche SDK Client
                                                                                                                Preparing search index...

                                                                                                                Function getContainerByIndex

                                                                                                                diff --git a/client/docs/functions/methods_index.getContainerRange.html b/client/docs/functions/methods_index.getContainerRange.html deleted file mode 100644 index fc565e91..00000000 --- a/client/docs/functions/methods_index.getContainerRange.html +++ /dev/null @@ -1,11 +0,0 @@ -getContainerRange | Avalanche SDK Client
                                                                                                                Avalanche SDK Client
                                                                                                                  Preparing search index...

                                                                                                                  Function getContainerRange

                                                                                                                  diff --git a/client/docs/functions/methods_index.getIndex.html b/client/docs/functions/methods_index.getIndex.html deleted file mode 100644 index fa346e2a..00000000 --- a/client/docs/functions/methods_index.getIndex.html +++ /dev/null @@ -1,11 +0,0 @@ -getIndex | Avalanche SDK Client
                                                                                                                  Avalanche SDK Client
                                                                                                                    Preparing search index...

                                                                                                                    Function getIndex

                                                                                                                    • Get the index of a container by its ID.

                                                                                                                      - -

                                                                                                                      Type Parameters

                                                                                                                      • chain extends undefined | Chain

                                                                                                                      Parameters

                                                                                                                      • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                        The client to use. AvalancheCoreClient

                                                                                                                        -
                                                                                                                      • params: GetIndexParameters

                                                                                                                        The container ID and encoding. GetIndexParameters

                                                                                                                        -

                                                                                                                      Returns Promise<GetIndexReturnType>

                                                                                                                      The container index. GetIndexReturnType

                                                                                                                      -
                                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                      import { getIndex } from '@avalanche-sdk/client/methods/index'

                                                                                                                      const client = createAvalancheCoreClient({
                                                                                                                      chain: avalanche,
                                                                                                                      transport: {
                                                                                                                      type: "http",
                                                                                                                      url: "<url>",
                                                                                                                      },
                                                                                                                      })

                                                                                                                      const index = await getIndex(client, {
                                                                                                                      id: "6fXf5hncR8LXvwtM8iezFQBpK5cubV6y1dWgpJCcNyzGB1EzY",
                                                                                                                      encoding: "hex"
                                                                                                                      }) -
                                                                                                                      - -
                                                                                                                    diff --git a/client/docs/functions/methods_index.getLastAccepted.html b/client/docs/functions/methods_index.getLastAccepted.html deleted file mode 100644 index b8064eb5..00000000 --- a/client/docs/functions/methods_index.getLastAccepted.html +++ /dev/null @@ -1,11 +0,0 @@ -getLastAccepted | Avalanche SDK Client
                                                                                                                    Avalanche SDK Client
                                                                                                                      Preparing search index...

                                                                                                                      Function getLastAccepted

                                                                                                                      diff --git a/client/docs/functions/methods_index.isAccepted.html b/client/docs/functions/methods_index.isAccepted.html deleted file mode 100644 index f70b2292..00000000 --- a/client/docs/functions/methods_index.isAccepted.html +++ /dev/null @@ -1,11 +0,0 @@ -isAccepted | Avalanche SDK Client
                                                                                                                      Avalanche SDK Client
                                                                                                                        Preparing search index...

                                                                                                                        Function isAccepted

                                                                                                                        • Type Parameters

                                                                                                                          • chain extends undefined | Chain

                                                                                                                          Parameters

                                                                                                                          Returns Promise<IsAcceptedReturnType>

                                                                                                                          Whether the container is accepted. IsAcceptedReturnType

                                                                                                                          -
                                                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                          import { isAccepted } from '@avalanche-sdk/client/methods/index'

                                                                                                                          const client = createAvalancheCoreClient({
                                                                                                                          chain: avalanche,
                                                                                                                          transport: {
                                                                                                                          type: "http",
                                                                                                                          url: "<url>",
                                                                                                                          },
                                                                                                                          })

                                                                                                                          const accepted = await isAccepted(client, {
                                                                                                                          id: "6fXf5hncR8LXvwtM8iezFQBpK5cubV6y1dWgpJCcNyzGB1EzY",
                                                                                                                          encoding: "hex"
                                                                                                                          }) -
                                                                                                                          - -
                                                                                                                        diff --git a/client/docs/functions/methods_info.acps.html b/client/docs/functions/methods_info.acps.html deleted file mode 100644 index 5d4686d7..00000000 --- a/client/docs/functions/methods_info.acps.html +++ /dev/null @@ -1,10 +0,0 @@ -acps | Avalanche SDK Client
                                                                                                                        Avalanche SDK Client
                                                                                                                          Preparing search index...

                                                                                                                          Function acps

                                                                                                                          • Returns peer preferences for Avalanche Community Proposals (ACPs).

                                                                                                                            - -

                                                                                                                            Type Parameters

                                                                                                                            • chain extends undefined | Chain

                                                                                                                            Parameters

                                                                                                                            • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                              The client to use.

                                                                                                                              -

                                                                                                                            Returns Promise<AcpsReturnType>

                                                                                                                            The ACP preferences. AcpsReturnType

                                                                                                                            -
                                                                                                                            import { createInfoApiClient } from '@avalanche-sdk/client'
                                                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                            import { acps } from '@avalanche-sdk/client/methods/info'

                                                                                                                            const client = createInfoApiClient({
                                                                                                                            chain: avalanche,
                                                                                                                            transport: {
                                                                                                                            type: "http",
                                                                                                                            },
                                                                                                                            })

                                                                                                                            const acpPreferences = await acps(client) -
                                                                                                                            - -
                                                                                                                          diff --git a/client/docs/functions/methods_info.getBlockchainID.html b/client/docs/functions/methods_info.getBlockchainID.html deleted file mode 100644 index c17a1dcd..00000000 --- a/client/docs/functions/methods_info.getBlockchainID.html +++ /dev/null @@ -1,11 +0,0 @@ -getBlockchainID | Avalanche SDK Client
                                                                                                                          Avalanche SDK Client
                                                                                                                            Preparing search index...

                                                                                                                            Function getBlockchainID

                                                                                                                            diff --git a/client/docs/functions/methods_info.getNetworkID.html b/client/docs/functions/methods_info.getNetworkID.html deleted file mode 100644 index 5993c216..00000000 --- a/client/docs/functions/methods_info.getNetworkID.html +++ /dev/null @@ -1,11 +0,0 @@ -getNetworkID | Avalanche SDK Client
                                                                                                                            Avalanche SDK Client
                                                                                                                              Preparing search index...

                                                                                                                              Function getNetworkID

                                                                                                                              • Get the ID of the network this node is participating in. -Network ID of 1 = Mainnet, Network ID of 5 = Fuji (testnet).

                                                                                                                                - -

                                                                                                                                Type Parameters

                                                                                                                                • chain extends undefined | Chain

                                                                                                                                Parameters

                                                                                                                                • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                  The client to use. AvalancheCoreClient

                                                                                                                                  -

                                                                                                                                Returns Promise<GetNetworkIDReturnType>

                                                                                                                                The network ID. GetNetworkIDReturnType

                                                                                                                                -
                                                                                                                                import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                import { getNetworkID } from '@avalanche-sdk/client/methods/info'

                                                                                                                                const client = createAvalancheCoreClient({
                                                                                                                                chain: avalanche,
                                                                                                                                transport: {
                                                                                                                                type: "http",
                                                                                                                                url: "<url>",
                                                                                                                                },
                                                                                                                                })

                                                                                                                                const networkID = await getNetworkID(client) -
                                                                                                                                - -
                                                                                                                              diff --git a/client/docs/functions/methods_info.getNetworkName.html b/client/docs/functions/methods_info.getNetworkName.html deleted file mode 100644 index e7759caf..00000000 --- a/client/docs/functions/methods_info.getNetworkName.html +++ /dev/null @@ -1,10 +0,0 @@ -getNetworkName | Avalanche SDK Client
                                                                                                                              Avalanche SDK Client
                                                                                                                                Preparing search index...

                                                                                                                                Function getNetworkName

                                                                                                                                • Get the name of the network this node is participating in.

                                                                                                                                  - -

                                                                                                                                  Type Parameters

                                                                                                                                  • chain extends undefined | Chain

                                                                                                                                  Parameters

                                                                                                                                  • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                    The client to use. AvalancheCoreClient

                                                                                                                                    -

                                                                                                                                  Returns Promise<GetNetworkNameReturnType>

                                                                                                                                  The network name. GetNetworkNameReturnType

                                                                                                                                  -
                                                                                                                                  import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                  import { getNetworkName } from '@avalanche-sdk/client/methods/info'

                                                                                                                                  const client = createAvalancheCoreClient({
                                                                                                                                  chain: avalanche,
                                                                                                                                  transport: {
                                                                                                                                  type: "http",
                                                                                                                                  url: "<url>",
                                                                                                                                  },
                                                                                                                                  })

                                                                                                                                  const networkName = await getNetworkName(client) -
                                                                                                                                  - -
                                                                                                                                diff --git a/client/docs/functions/methods_info.getNodeID.html b/client/docs/functions/methods_info.getNodeID.html deleted file mode 100644 index 5a64f86a..00000000 --- a/client/docs/functions/methods_info.getNodeID.html +++ /dev/null @@ -1,11 +0,0 @@ -getNodeID | Avalanche SDK Client
                                                                                                                                Avalanche SDK Client
                                                                                                                                  Preparing search index...

                                                                                                                                  Function getNodeID

                                                                                                                                  • Get the ID, the BLS key, and the proof of possession of this node. -Note: This endpoint is only available on specific nodes, not on public servers.

                                                                                                                                    - -

                                                                                                                                    Type Parameters

                                                                                                                                    • chain extends undefined | Chain

                                                                                                                                    Parameters

                                                                                                                                    • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                      The client to use. AvalancheCoreClient

                                                                                                                                      -

                                                                                                                                    Returns Promise<GetNodeIDReturnType>

                                                                                                                                    The node ID and BLS key information. GetNodeIDReturnType

                                                                                                                                    -
                                                                                                                                    import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                    import { getNodeID } from '@avalanche-sdk/client/methods/info'

                                                                                                                                    const client = createAvalancheCoreClient({
                                                                                                                                    chain: avalanche,
                                                                                                                                    transport: {
                                                                                                                                    type: "http",
                                                                                                                                    url: "<url>",
                                                                                                                                    },
                                                                                                                                    })

                                                                                                                                    const nodeInfo = await getNodeID(client) -
                                                                                                                                    - -
                                                                                                                                  diff --git a/client/docs/functions/methods_info.getNodeIP.html b/client/docs/functions/methods_info.getNodeIP.html deleted file mode 100644 index 4935183f..00000000 --- a/client/docs/functions/methods_info.getNodeIP.html +++ /dev/null @@ -1,10 +0,0 @@ -getNodeIP | Avalanche SDK Client
                                                                                                                                  Avalanche SDK Client
                                                                                                                                    Preparing search index...

                                                                                                                                    Function getNodeIP

                                                                                                                                    • Get the IP address of this node.

                                                                                                                                      - -

                                                                                                                                      Type Parameters

                                                                                                                                      • chain extends undefined | Chain

                                                                                                                                      Parameters

                                                                                                                                      • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                        The client to use. AvalancheCoreClient

                                                                                                                                        -

                                                                                                                                      Returns Promise<GetNodeIPReturnType>

                                                                                                                                      The node's IP address. GetNodeIPReturnType

                                                                                                                                      -
                                                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                      import { getNodeIP } from '@avalanche-sdk/client/methods/info'

                                                                                                                                      const client = createAvalancheCoreClient({
                                                                                                                                      chain: avalanche,
                                                                                                                                      transport: {
                                                                                                                                      type: "http",
                                                                                                                                      url: "<url>",
                                                                                                                                      },
                                                                                                                                      })

                                                                                                                                      const nodeIP = await getNodeIP(client) -
                                                                                                                                      - -
                                                                                                                                    diff --git a/client/docs/functions/methods_info.getNodeVersion.html b/client/docs/functions/methods_info.getNodeVersion.html deleted file mode 100644 index f4b000b8..00000000 --- a/client/docs/functions/methods_info.getNodeVersion.html +++ /dev/null @@ -1,10 +0,0 @@ -getNodeVersion | Avalanche SDK Client
                                                                                                                                    Avalanche SDK Client
                                                                                                                                      Preparing search index...

                                                                                                                                      Function getNodeVersion

                                                                                                                                      • Type Parameters

                                                                                                                                        • chain extends undefined | Chain

                                                                                                                                        Parameters

                                                                                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                          The client to use. AvalancheCoreClient

                                                                                                                                          -

                                                                                                                                        Returns Promise<GetNodeVersionReturnType>

                                                                                                                                        The node's version. GetNodeVersionReturnType

                                                                                                                                        -
                                                                                                                                        import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                        import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                        import { getNodeVersion } from '@avalanche-sdk/client/methods/info'

                                                                                                                                        const client = createAvalancheCoreClient({
                                                                                                                                        chain: avalanche,
                                                                                                                                        transport: {
                                                                                                                                        type: "http",
                                                                                                                                        url: "<url>",
                                                                                                                                        },
                                                                                                                                        })

                                                                                                                                        const nodeVersion = await getNodeVersion(client) -
                                                                                                                                        - -
                                                                                                                                      diff --git a/client/docs/functions/methods_info.getTxFee.html b/client/docs/functions/methods_info.getTxFee.html deleted file mode 100644 index c94779b0..00000000 --- a/client/docs/functions/methods_info.getTxFee.html +++ /dev/null @@ -1,10 +0,0 @@ -getTxFee | Avalanche SDK Client
                                                                                                                                      Avalanche SDK Client
                                                                                                                                        Preparing search index...

                                                                                                                                        Function getTxFee

                                                                                                                                        • Get the transaction fee for this node.

                                                                                                                                          - -

                                                                                                                                          Type Parameters

                                                                                                                                          • chain extends undefined | Chain

                                                                                                                                          Parameters

                                                                                                                                          • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                            The client to use. AvalancheCoreClient

                                                                                                                                            -

                                                                                                                                          Returns Promise<GetTxFeeReturnType>

                                                                                                                                          The transaction fee. GetTxFeeReturnType

                                                                                                                                          -
                                                                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                          import { getTxFee } from '@avalanche-sdk/client/methods/info'

                                                                                                                                          const client = createAvalancheCoreClient({
                                                                                                                                          chain: avalanche,
                                                                                                                                          transport: {
                                                                                                                                          type: "http",
                                                                                                                                          url: "<url>",
                                                                                                                                          },
                                                                                                                                          })

                                                                                                                                          const txFee = await getTxFee(client) -
                                                                                                                                          - -
                                                                                                                                        diff --git a/client/docs/functions/methods_info.getVMs.html b/client/docs/functions/methods_info.getVMs.html deleted file mode 100644 index 62ac9a85..00000000 --- a/client/docs/functions/methods_info.getVMs.html +++ /dev/null @@ -1,10 +0,0 @@ -getVMs | Avalanche SDK Client
                                                                                                                                        Avalanche SDK Client
                                                                                                                                          Preparing search index...

                                                                                                                                          Function getVMs

                                                                                                                                          • Get the virtual machines (VMs) this node is running.

                                                                                                                                            - -

                                                                                                                                            Type Parameters

                                                                                                                                            • chain extends undefined | Chain

                                                                                                                                            Parameters

                                                                                                                                            • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                              The client to use. AvalancheCoreClient

                                                                                                                                              -

                                                                                                                                            Returns Promise<GetVMsReturnType>

                                                                                                                                            The VMs running on this node. GetVMsReturnType

                                                                                                                                            -
                                                                                                                                            import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                            import { getVMs } from '@avalanche-sdk/client/methods/info'

                                                                                                                                            const client = createAvalancheCoreClient({
                                                                                                                                            chain: avalanche,
                                                                                                                                            transport: {
                                                                                                                                            type: "http",
                                                                                                                                            url: "<url>",
                                                                                                                                            },
                                                                                                                                            })

                                                                                                                                            const vms = await getVMs(client) -
                                                                                                                                            - -
                                                                                                                                          diff --git a/client/docs/functions/methods_info.isBootstrapped.html b/client/docs/functions/methods_info.isBootstrapped.html deleted file mode 100644 index 98318635..00000000 --- a/client/docs/functions/methods_info.isBootstrapped.html +++ /dev/null @@ -1,11 +0,0 @@ -isBootstrapped | Avalanche SDK Client
                                                                                                                                          Avalanche SDK Client
                                                                                                                                            Preparing search index...

                                                                                                                                            Function isBootstrapped

                                                                                                                                            diff --git a/client/docs/functions/methods_info.peers.html b/client/docs/functions/methods_info.peers.html deleted file mode 100644 index d9c4fe43..00000000 --- a/client/docs/functions/methods_info.peers.html +++ /dev/null @@ -1,11 +0,0 @@ -peers | Avalanche SDK Client
                                                                                                                                            Avalanche SDK Client
                                                                                                                                              Preparing search index...

                                                                                                                                              Function peers

                                                                                                                                              • Get a description of peer connections.

                                                                                                                                                - -

                                                                                                                                                Type Parameters

                                                                                                                                                • chain extends undefined | Chain

                                                                                                                                                Parameters

                                                                                                                                                • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                  The client to use. AvalancheCoreClient

                                                                                                                                                  -
                                                                                                                                                • params: PeersParameters

                                                                                                                                                  Optional node IDs to filter peers. PeersParameters

                                                                                                                                                  -

                                                                                                                                                Returns Promise<PeersReturnType>

                                                                                                                                                Information about connected peers. PeersReturnType

                                                                                                                                                -
                                                                                                                                                import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                import { peers } from '@avalanche-sdk/client/methods/info'

                                                                                                                                                const client = createAvalancheCoreClient({
                                                                                                                                                chain: avalanche,
                                                                                                                                                transport: {
                                                                                                                                                type: "http",
                                                                                                                                                url: "<url>",
                                                                                                                                                },
                                                                                                                                                })

                                                                                                                                                const peers = await peers(client, {
                                                                                                                                                nodeIDs: []
                                                                                                                                                }) -
                                                                                                                                                - -
                                                                                                                                              diff --git a/client/docs/functions/methods_info.upgrades.html b/client/docs/functions/methods_info.upgrades.html deleted file mode 100644 index c6ad4a0c..00000000 --- a/client/docs/functions/methods_info.upgrades.html +++ /dev/null @@ -1,10 +0,0 @@ -upgrades | Avalanche SDK Client
                                                                                                                                              Avalanche SDK Client
                                                                                                                                                Preparing search index...

                                                                                                                                                Function upgrades

                                                                                                                                                • Returns the upgrade history and configuration of the network.

                                                                                                                                                  - -

                                                                                                                                                  Type Parameters

                                                                                                                                                  • chain extends undefined | Chain

                                                                                                                                                  Parameters

                                                                                                                                                  • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                    The client to use. AvalancheCoreClient

                                                                                                                                                    -

                                                                                                                                                  Returns Promise<UpgradesReturnType>

                                                                                                                                                  The network upgrade information. UpgradesReturnType

                                                                                                                                                  -
                                                                                                                                                  import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                  import { upgrades } from '@avalanche-sdk/client/methods/info'

                                                                                                                                                  const client = createAvalancheCoreClient({
                                                                                                                                                  chain: avalanche,
                                                                                                                                                  transport: {
                                                                                                                                                  type: "http",
                                                                                                                                                  url: "<url>",
                                                                                                                                                  },
                                                                                                                                                  })

                                                                                                                                                  const upgrades = await upgrades(client) -
                                                                                                                                                  - -
                                                                                                                                                diff --git a/client/docs/functions/methods_info.uptime.html b/client/docs/functions/methods_info.uptime.html deleted file mode 100644 index 7f0286ca..00000000 --- a/client/docs/functions/methods_info.uptime.html +++ /dev/null @@ -1,11 +0,0 @@ -uptime | Avalanche SDK Client
                                                                                                                                                Avalanche SDK Client
                                                                                                                                                  Preparing search index...

                                                                                                                                                  Function uptime

                                                                                                                                                  • Returns the network's observed uptime of this node. -This is the only reliable source of data for your node's uptime.

                                                                                                                                                    - -

                                                                                                                                                    Type Parameters

                                                                                                                                                    • chain extends undefined | Chain

                                                                                                                                                    Parameters

                                                                                                                                                    • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                      The client to use. AvalancheCoreClient

                                                                                                                                                      -

                                                                                                                                                    Returns Promise<UptimeReturnType>

                                                                                                                                                    The node's uptime statistics. UptimeReturnType

                                                                                                                                                    -
                                                                                                                                                    import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                    import { uptime } from '@avalanche-sdk/client/methods/info'

                                                                                                                                                    const client = createAvalancheCoreClient({
                                                                                                                                                    chain: avalanche,
                                                                                                                                                    transport: {
                                                                                                                                                    type: "http",
                                                                                                                                                    url: "<url>",
                                                                                                                                                    },
                                                                                                                                                    })

                                                                                                                                                    const uptime = await uptime(client) -
                                                                                                                                                    - -
                                                                                                                                                  diff --git a/client/docs/functions/methods_pChain.getBalance.html b/client/docs/functions/methods_pChain.getBalance.html deleted file mode 100644 index 0ed8f963..00000000 --- a/client/docs/functions/methods_pChain.getBalance.html +++ /dev/null @@ -1,11 +0,0 @@ -getBalance | Avalanche SDK Client
                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                    Preparing search index...

                                                                                                                                                    Function getBalance

                                                                                                                                                    • Get the balance of AVAX controlled by a given address.

                                                                                                                                                      - -

                                                                                                                                                      Type Parameters

                                                                                                                                                      • chain extends undefined | Chain

                                                                                                                                                      Parameters

                                                                                                                                                      Returns Promise<GetBalanceReturnType>

                                                                                                                                                      The balance information. GetBalanceReturnType

                                                                                                                                                      -
                                                                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                      import { getBalance } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                      const client = createAvalancheCoreClient({
                                                                                                                                                      chain: avalanche,
                                                                                                                                                      transport: {
                                                                                                                                                      type: "http",
                                                                                                                                                      url: "<url>",
                                                                                                                                                      },
                                                                                                                                                      })

                                                                                                                                                      const balance = await getBalance(client, {
                                                                                                                                                      addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"]
                                                                                                                                                      }) -
                                                                                                                                                      - -
                                                                                                                                                    diff --git a/client/docs/functions/methods_pChain.getBlock.html b/client/docs/functions/methods_pChain.getBlock.html deleted file mode 100644 index 53d931c8..00000000 --- a/client/docs/functions/methods_pChain.getBlock.html +++ /dev/null @@ -1,11 +0,0 @@ -getBlock | Avalanche SDK Client
                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                      Preparing search index...

                                                                                                                                                      Function getBlock

                                                                                                                                                      • Type Parameters

                                                                                                                                                        • chain extends undefined | Chain

                                                                                                                                                        Parameters

                                                                                                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                          The client to use. AvalancheCoreClient

                                                                                                                                                          -
                                                                                                                                                        • params: GetBlockParameters

                                                                                                                                                          The block ID and encoding format GetBlockParameters

                                                                                                                                                          -

                                                                                                                                                        Returns Promise<PChainBlockType>

                                                                                                                                                        The block data. GetBlockReturnType

                                                                                                                                                        -
                                                                                                                                                        import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                        import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                        import { getBlock } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                        const client = createAvalancheCoreClient({
                                                                                                                                                        chain: avalanche,
                                                                                                                                                        transport: {
                                                                                                                                                        type: "http",
                                                                                                                                                        url: "<url>",
                                                                                                                                                        },
                                                                                                                                                        })

                                                                                                                                                        const block = await getBlock(client, {
                                                                                                                                                        blockID: "d7WYmb8VeZNHsny3EJCwMm6QA37s1EHwMxw1Y71V3FqPZ5EFG",
                                                                                                                                                        encoding: "hex"
                                                                                                                                                        }) -
                                                                                                                                                        - -
                                                                                                                                                      diff --git a/client/docs/functions/methods_pChain.getBlockByHeight.html b/client/docs/functions/methods_pChain.getBlockByHeight.html deleted file mode 100644 index 9d93ca46..00000000 --- a/client/docs/functions/methods_pChain.getBlockByHeight.html +++ /dev/null @@ -1,11 +0,0 @@ -getBlockByHeight | Avalanche SDK Client
                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                        Preparing search index...

                                                                                                                                                        Function getBlockByHeight

                                                                                                                                                        diff --git a/client/docs/functions/methods_pChain.getBlockchainStatus.html b/client/docs/functions/methods_pChain.getBlockchainStatus.html deleted file mode 100644 index 376651cc..00000000 --- a/client/docs/functions/methods_pChain.getBlockchainStatus.html +++ /dev/null @@ -1,11 +0,0 @@ -getBlockchainStatus | Avalanche SDK Client
                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                          Preparing search index...

                                                                                                                                                          Function getBlockchainStatus

                                                                                                                                                          diff --git a/client/docs/functions/methods_pChain.getBlockchains.html b/client/docs/functions/methods_pChain.getBlockchains.html deleted file mode 100644 index 038cf90d..00000000 --- a/client/docs/functions/methods_pChain.getBlockchains.html +++ /dev/null @@ -1,10 +0,0 @@ -getBlockchains | Avalanche SDK Client
                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                            Preparing search index...

                                                                                                                                                            Function getBlockchains

                                                                                                                                                            • Get all the blockchains that exist (excluding the P-Chain).

                                                                                                                                                              - -

                                                                                                                                                              Type Parameters

                                                                                                                                                              • chain extends undefined | Chain

                                                                                                                                                              Parameters

                                                                                                                                                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                The client to use to make the request AvalancheCoreClient

                                                                                                                                                                -

                                                                                                                                                              Returns Promise<GetBlockchainsReturnType>

                                                                                                                                                              The list of blockchains. GetBlockchainsReturnType

                                                                                                                                                              -
                                                                                                                                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                              import { getBlockchains } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                              const client = createAvalancheCoreClient({
                                                                                                                                                              chain: avalanche,
                                                                                                                                                              transport: {
                                                                                                                                                              type: "http",
                                                                                                                                                              url: "<url>",
                                                                                                                                                              },
                                                                                                                                                              })

                                                                                                                                                              const blockchains = await getBlockchains(client) -
                                                                                                                                                              - -
                                                                                                                                                            diff --git a/client/docs/functions/methods_pChain.getCurrentSupply.html b/client/docs/functions/methods_pChain.getCurrentSupply.html deleted file mode 100644 index 0792ecf2..00000000 --- a/client/docs/functions/methods_pChain.getCurrentSupply.html +++ /dev/null @@ -1,11 +0,0 @@ -getCurrentSupply | Avalanche SDK Client
                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                              Preparing search index...

                                                                                                                                                              Function getCurrentSupply

                                                                                                                                                              diff --git a/client/docs/functions/methods_pChain.getCurrentValidators.html b/client/docs/functions/methods_pChain.getCurrentValidators.html deleted file mode 100644 index ceee3458..00000000 --- a/client/docs/functions/methods_pChain.getCurrentValidators.html +++ /dev/null @@ -1,11 +0,0 @@ -getCurrentValidators | Avalanche SDK Client
                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                Preparing search index...

                                                                                                                                                                Function getCurrentValidators

                                                                                                                                                                diff --git a/client/docs/functions/methods_pChain.getFeeConfig.html b/client/docs/functions/methods_pChain.getFeeConfig.html deleted file mode 100644 index 06c00c27..00000000 --- a/client/docs/functions/methods_pChain.getFeeConfig.html +++ /dev/null @@ -1,10 +0,0 @@ -getFeeConfig | Avalanche SDK Client
                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                  Preparing search index...

                                                                                                                                                                  Function getFeeConfig

                                                                                                                                                                  • Get the fee configuration for the P-Chain.

                                                                                                                                                                    - -

                                                                                                                                                                    Type Parameters

                                                                                                                                                                    • chain extends undefined | Chain

                                                                                                                                                                    Parameters

                                                                                                                                                                    • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                      The client to use. AvalancheCoreClient

                                                                                                                                                                      -

                                                                                                                                                                    Returns Promise<GetFeeConfigReturnType>

                                                                                                                                                                    The fee configuration. GetFeeConfigReturnType

                                                                                                                                                                    -
                                                                                                                                                                    import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                    import { getFeeConfig } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                    const client = createAvalancheCoreClient({
                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                    transport: {
                                                                                                                                                                    type: "http",
                                                                                                                                                                    url: "<url>",
                                                                                                                                                                    },
                                                                                                                                                                    })

                                                                                                                                                                    const feeConfig = await getFeeConfig(client) -
                                                                                                                                                                    - -
                                                                                                                                                                  diff --git a/client/docs/functions/methods_pChain.getFeeState.html b/client/docs/functions/methods_pChain.getFeeState.html deleted file mode 100644 index 5d8e290b..00000000 --- a/client/docs/functions/methods_pChain.getFeeState.html +++ /dev/null @@ -1,10 +0,0 @@ -getFeeState | Avalanche SDK Client
                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                    Preparing search index...

                                                                                                                                                                    Function getFeeState

                                                                                                                                                                    • Get the current fee state of the P-Chain.

                                                                                                                                                                      - -

                                                                                                                                                                      Type Parameters

                                                                                                                                                                      • chain extends undefined | Chain

                                                                                                                                                                      Parameters

                                                                                                                                                                      • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                        The client to use. AvalancheCoreClient

                                                                                                                                                                        -

                                                                                                                                                                      Returns Promise<GetFeeStateReturnType>

                                                                                                                                                                      The fee state. GetFeeStateReturnType

                                                                                                                                                                      -
                                                                                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                      import { getFeeState } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                      const client = createAvalancheCoreClient({
                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                      transport: {
                                                                                                                                                                      type: "http",
                                                                                                                                                                      url: "<url>",
                                                                                                                                                                      },
                                                                                                                                                                      })

                                                                                                                                                                      const feeState = await getFeeState(client) -
                                                                                                                                                                      - -
                                                                                                                                                                    diff --git a/client/docs/functions/methods_pChain.getHeight.html b/client/docs/functions/methods_pChain.getHeight.html deleted file mode 100644 index 6aff83cc..00000000 --- a/client/docs/functions/methods_pChain.getHeight.html +++ /dev/null @@ -1,10 +0,0 @@ -getHeight | Avalanche SDK Client
                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                      Preparing search index...

                                                                                                                                                                      Function getHeight

                                                                                                                                                                      • Get the height of the last accepted block.

                                                                                                                                                                        - -

                                                                                                                                                                        Type Parameters

                                                                                                                                                                        • chain extends undefined | Chain

                                                                                                                                                                        Parameters

                                                                                                                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                          The client to use. AvalancheCoreClient

                                                                                                                                                                          -

                                                                                                                                                                        Returns Promise<GetHeightReturnType>

                                                                                                                                                                        The current height. GetHeightReturnType

                                                                                                                                                                        -
                                                                                                                                                                        import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                        import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                        import { getHeight } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                        const client = createAvalancheCoreClient({
                                                                                                                                                                        chain: avalanche,
                                                                                                                                                                        transport: {
                                                                                                                                                                        type: "http",
                                                                                                                                                                        url: "<url>",
                                                                                                                                                                        },
                                                                                                                                                                        })

                                                                                                                                                                        const height = await getHeight(client) -
                                                                                                                                                                        - -
                                                                                                                                                                      diff --git a/client/docs/functions/methods_pChain.getL1Validator.html b/client/docs/functions/methods_pChain.getL1Validator.html deleted file mode 100644 index e886f7ad..00000000 --- a/client/docs/functions/methods_pChain.getL1Validator.html +++ /dev/null @@ -1,11 +0,0 @@ -getL1Validator | Avalanche SDK Client
                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                        Preparing search index...

                                                                                                                                                                        Function getL1Validator

                                                                                                                                                                        diff --git a/client/docs/functions/methods_pChain.getMinStake.html b/client/docs/functions/methods_pChain.getMinStake.html deleted file mode 100644 index cbf4e5bf..00000000 --- a/client/docs/functions/methods_pChain.getMinStake.html +++ /dev/null @@ -1,11 +0,0 @@ -getMinStake | Avalanche SDK Client
                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                          Preparing search index...

                                                                                                                                                                          Function getMinStake

                                                                                                                                                                          diff --git a/client/docs/functions/methods_pChain.getProposedHeight.html b/client/docs/functions/methods_pChain.getProposedHeight.html deleted file mode 100644 index 64c84e6b..00000000 --- a/client/docs/functions/methods_pChain.getProposedHeight.html +++ /dev/null @@ -1,10 +0,0 @@ -getProposedHeight | Avalanche SDK Client
                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                            Preparing search index...

                                                                                                                                                                            Function getProposedHeight

                                                                                                                                                                            • Type Parameters

                                                                                                                                                                              • chain extends undefined | Chain

                                                                                                                                                                              Parameters

                                                                                                                                                                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                The client to use to make the request AvalancheCoreClient

                                                                                                                                                                                -

                                                                                                                                                                              Returns Promise<GetProposedHeightReturnType>

                                                                                                                                                                              The proposed height. GetProposedHeightReturnType

                                                                                                                                                                              -
                                                                                                                                                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                              import { getProposedHeight } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                              const client = createAvalancheCoreClient({
                                                                                                                                                                              chain: avalanche,
                                                                                                                                                                              transport: {
                                                                                                                                                                              type: "http",
                                                                                                                                                                              url: "<url>",
                                                                                                                                                                              },
                                                                                                                                                                              })

                                                                                                                                                                              const proposedHeight = await getProposedHeight(client) -
                                                                                                                                                                              - -
                                                                                                                                                                            diff --git a/client/docs/functions/methods_pChain.getRewardUTXOs.html b/client/docs/functions/methods_pChain.getRewardUTXOs.html deleted file mode 100644 index a7f0a6b7..00000000 --- a/client/docs/functions/methods_pChain.getRewardUTXOs.html +++ /dev/null @@ -1,11 +0,0 @@ -getRewardUTXOs | Avalanche SDK Client
                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                              Preparing search index...

                                                                                                                                                                              Function getRewardUTXOs

                                                                                                                                                                              diff --git a/client/docs/functions/methods_pChain.getStake.html b/client/docs/functions/methods_pChain.getStake.html deleted file mode 100644 index dcbdebed..00000000 --- a/client/docs/functions/methods_pChain.getStake.html +++ /dev/null @@ -1,11 +0,0 @@ -getStake | Avalanche SDK Client
                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                Function getStake

                                                                                                                                                                                • Get the stake amount for a set of addresses.

                                                                                                                                                                                  - -

                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                  • chain extends undefined | Chain

                                                                                                                                                                                  Parameters

                                                                                                                                                                                  Returns Promise<GetStakeReturnType>

                                                                                                                                                                                  The stake amount. GetStakeReturnType

                                                                                                                                                                                  -
                                                                                                                                                                                  import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                  import { getStake } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                  const client = createAvalancheCoreClient({
                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                  transport: {
                                                                                                                                                                                  type: "http",
                                                                                                                                                                                  url: "<url>",
                                                                                                                                                                                  },
                                                                                                                                                                                  })

                                                                                                                                                                                  const stake = await getStake(client, {
                                                                                                                                                                                  addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"],
                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                  }) -
                                                                                                                                                                                  - -
                                                                                                                                                                                diff --git a/client/docs/functions/methods_pChain.getStakingAssetID.html b/client/docs/functions/methods_pChain.getStakingAssetID.html deleted file mode 100644 index 53190381..00000000 --- a/client/docs/functions/methods_pChain.getStakingAssetID.html +++ /dev/null @@ -1,11 +0,0 @@ -getStakingAssetID | Avalanche SDK Client
                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                  Function getStakingAssetID

                                                                                                                                                                                  diff --git a/client/docs/functions/methods_pChain.getSubnet.html b/client/docs/functions/methods_pChain.getSubnet.html deleted file mode 100644 index 79754707..00000000 --- a/client/docs/functions/methods_pChain.getSubnet.html +++ /dev/null @@ -1,11 +0,0 @@ -getSubnet | Avalanche SDK Client
                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                    Function getSubnet

                                                                                                                                                                                    • Type Parameters

                                                                                                                                                                                      • chain extends undefined | Chain

                                                                                                                                                                                      Parameters

                                                                                                                                                                                      Returns Promise<GetSubnetReturnType>

                                                                                                                                                                                      Information about the subnet. GetSubnetReturnType

                                                                                                                                                                                      -
                                                                                                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                      import { getSubnet } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                      const client = createAvalancheCoreClient({
                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                      transport: {
                                                                                                                                                                                      type: "http",
                                                                                                                                                                                      url: "<url>",
                                                                                                                                                                                      },
                                                                                                                                                                                      })

                                                                                                                                                                                      const subnet = await getSubnet(client, {
                                                                                                                                                                                      subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                      }) -
                                                                                                                                                                                      - -
                                                                                                                                                                                    diff --git a/client/docs/functions/methods_pChain.getSubnets.html b/client/docs/functions/methods_pChain.getSubnets.html deleted file mode 100644 index f38ad60c..00000000 --- a/client/docs/functions/methods_pChain.getSubnets.html +++ /dev/null @@ -1,11 +0,0 @@ -getSubnets | Avalanche SDK Client
                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                      Function getSubnets

                                                                                                                                                                                      diff --git a/client/docs/functions/methods_pChain.getTimestamp.html b/client/docs/functions/methods_pChain.getTimestamp.html deleted file mode 100644 index 839a41bd..00000000 --- a/client/docs/functions/methods_pChain.getTimestamp.html +++ /dev/null @@ -1,10 +0,0 @@ -getTimestamp | Avalanche SDK Client
                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                        Function getTimestamp

                                                                                                                                                                                        • Get the current timestamp of the P-Chain.

                                                                                                                                                                                          - -

                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                          • chain extends undefined | Chain

                                                                                                                                                                                          Parameters

                                                                                                                                                                                          • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                            The client to use. AvalancheCoreClient

                                                                                                                                                                                            -

                                                                                                                                                                                          Returns Promise<GetTimestampReturnType>

                                                                                                                                                                                          The current timestamp. GetTimestampReturnType

                                                                                                                                                                                          -
                                                                                                                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                          import { getTimestamp } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                          const client = createAvalancheCoreClient({
                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                          transport: {
                                                                                                                                                                                          type: "http",
                                                                                                                                                                                          url: "<url>",
                                                                                                                                                                                          },
                                                                                                                                                                                          })

                                                                                                                                                                                          const timestamp = await getTimestamp(client) -
                                                                                                                                                                                          - -
                                                                                                                                                                                        diff --git a/client/docs/functions/methods_pChain.getTotalStake.html b/client/docs/functions/methods_pChain.getTotalStake.html deleted file mode 100644 index 047d8b94..00000000 --- a/client/docs/functions/methods_pChain.getTotalStake.html +++ /dev/null @@ -1,11 +0,0 @@ -getTotalStake | Avalanche SDK Client
                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                          Function getTotalStake

                                                                                                                                                                                          diff --git a/client/docs/functions/methods_pChain.getTx.html b/client/docs/functions/methods_pChain.getTx.html deleted file mode 100644 index 619058e3..00000000 --- a/client/docs/functions/methods_pChain.getTx.html +++ /dev/null @@ -1,11 +0,0 @@ -getTx | Avalanche SDK Client
                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                            Function getTx

                                                                                                                                                                                            • Type Parameters

                                                                                                                                                                                              • chain extends undefined | Chain

                                                                                                                                                                                              Parameters

                                                                                                                                                                                              • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                The client to use. AvalancheCoreClient

                                                                                                                                                                                                -
                                                                                                                                                                                              • params: GetTxParameters

                                                                                                                                                                                                The transaction ID and encoding GetTxParameters

                                                                                                                                                                                                -

                                                                                                                                                                                              Returns Promise<PChainTransactionType>

                                                                                                                                                                                              The transaction data. GetTxReturnType

                                                                                                                                                                                              -
                                                                                                                                                                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                              import { getTx } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                              const client = createAvalancheCoreClient({
                                                                                                                                                                                              chain: avalanche,
                                                                                                                                                                                              transport: {
                                                                                                                                                                                              type: "http",
                                                                                                                                                                                              url: "<url>",
                                                                                                                                                                                              },
                                                                                                                                                                                              })

                                                                                                                                                                                              const tx = await getTx(client, {
                                                                                                                                                                                              txID: "11111111111111111111111111111111LpoYY",
                                                                                                                                                                                              encoding: "hex"
                                                                                                                                                                                              }) -
                                                                                                                                                                                              - -
                                                                                                                                                                                            diff --git a/client/docs/functions/methods_pChain.getTxStatus.html b/client/docs/functions/methods_pChain.getTxStatus.html deleted file mode 100644 index 206bbe5d..00000000 --- a/client/docs/functions/methods_pChain.getTxStatus.html +++ /dev/null @@ -1,11 +0,0 @@ -getTxStatus | Avalanche SDK Client
                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                              Function getTxStatus

                                                                                                                                                                                              diff --git a/client/docs/functions/methods_pChain.getUTXOs.html b/client/docs/functions/methods_pChain.getUTXOs.html deleted file mode 100644 index 10af78d3..00000000 --- a/client/docs/functions/methods_pChain.getUTXOs.html +++ /dev/null @@ -1,11 +0,0 @@ -getUTXOs | Avalanche SDK Client
                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                Function getUTXOs

                                                                                                                                                                                                • Get the UTXOs for a set of addresses.

                                                                                                                                                                                                  - -

                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                  • chain extends undefined | Chain

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                    The client to use. AvalancheCoreClient

                                                                                                                                                                                                    -
                                                                                                                                                                                                  • params: GetUTXOsParameters

                                                                                                                                                                                                    The addresses and source chain GetUTXOsParameters

                                                                                                                                                                                                    -

                                                                                                                                                                                                  Returns Promise<GetUTXOsReturnType>

                                                                                                                                                                                                  The UTXOs. GetUTXOsReturnType

                                                                                                                                                                                                  -
                                                                                                                                                                                                  import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                  import { getUTXOs } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                                  const client = createAvalancheCoreClient({
                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                  url: "<url>",
                                                                                                                                                                                                  },
                                                                                                                                                                                                  })

                                                                                                                                                                                                  const utxos = await getUTXOs(client, {
                                                                                                                                                                                                  addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"],
                                                                                                                                                                                                  sourceChain: "X"
                                                                                                                                                                                                  }) -
                                                                                                                                                                                                  - -
                                                                                                                                                                                                diff --git a/client/docs/functions/methods_pChain.getValidatorsAt.html b/client/docs/functions/methods_pChain.getValidatorsAt.html deleted file mode 100644 index db01bb6e..00000000 --- a/client/docs/functions/methods_pChain.getValidatorsAt.html +++ /dev/null @@ -1,11 +0,0 @@ -getValidatorsAt | Avalanche SDK Client
                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                  Function getValidatorsAt

                                                                                                                                                                                                  diff --git a/client/docs/functions/methods_pChain.issueTx.html b/client/docs/functions/methods_pChain.issueTx.html deleted file mode 100644 index 181450ef..00000000 --- a/client/docs/functions/methods_pChain.issueTx.html +++ /dev/null @@ -1,11 +0,0 @@ -issueTx | Avalanche SDK Client
                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                    Function issueTx

                                                                                                                                                                                                    • Issue a transaction to the Platform Chain.

                                                                                                                                                                                                      - -

                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                      • chain extends undefined | Chain

                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                      • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                        The client to use. AvalancheCoreClient

                                                                                                                                                                                                        -
                                                                                                                                                                                                      • params: IssueTxParameters

                                                                                                                                                                                                        The transaction bytes and encoding IssueTxParameters

                                                                                                                                                                                                        -

                                                                                                                                                                                                      Returns Promise<IssueTxReturnType>

                                                                                                                                                                                                      The transaction ID. IssueTxReturnType

                                                                                                                                                                                                      -
                                                                                                                                                                                                      import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                      import { issueTx } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                                      const client = createAvalancheCoreClient({
                                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                                      transport: {
                                                                                                                                                                                                      type: "http",
                                                                                                                                                                                                      url: "<url>",
                                                                                                                                                                                                      },
                                                                                                                                                                                                      })

                                                                                                                                                                                                      const txID = await issueTx(client, {
                                                                                                                                                                                                      tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                                                                                                                                                      encoding: "hex"
                                                                                                                                                                                                      }) -
                                                                                                                                                                                                      - -
                                                                                                                                                                                                    diff --git a/client/docs/functions/methods_pChain.sampleValidators.html b/client/docs/functions/methods_pChain.sampleValidators.html deleted file mode 100644 index a3fb90a8..00000000 --- a/client/docs/functions/methods_pChain.sampleValidators.html +++ /dev/null @@ -1,11 +0,0 @@ -sampleValidators | Avalanche SDK Client
                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                      Function sampleValidators

                                                                                                                                                                                                      diff --git a/client/docs/functions/methods_pChain.validatedBy.html b/client/docs/functions/methods_pChain.validatedBy.html deleted file mode 100644 index 40b5f504..00000000 --- a/client/docs/functions/methods_pChain.validatedBy.html +++ /dev/null @@ -1,11 +0,0 @@ -validatedBy | Avalanche SDK Client
                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                        Function validatedBy

                                                                                                                                                                                                        • Get the validators that validated a transaction.

                                                                                                                                                                                                          - -

                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                          • chain extends undefined | Chain

                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                          Returns Promise<ValidatedByReturnType>

                                                                                                                                                                                                          The validators that validated the transaction. ValidatedByReturnType

                                                                                                                                                                                                          -
                                                                                                                                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                          import { validatedBy } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                                          const client = createAvalancheCoreClient({
                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                          url: "<url>",
                                                                                                                                                                                                          },
                                                                                                                                                                                                          })

                                                                                                                                                                                                          const validators = await validatedBy(client, {
                                                                                                                                                                                                          txID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                          }) -
                                                                                                                                                                                                          - -
                                                                                                                                                                                                        diff --git a/client/docs/functions/methods_pChain.validates.html b/client/docs/functions/methods_pChain.validates.html deleted file mode 100644 index 626c750c..00000000 --- a/client/docs/functions/methods_pChain.validates.html +++ /dev/null @@ -1,11 +0,0 @@ -validates | Avalanche SDK Client
                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                          Function validates

                                                                                                                                                                                                          • Type Parameters

                                                                                                                                                                                                            • chain extends undefined | Chain

                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                            • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                              The client to use. AvalancheCoreClient

                                                                                                                                                                                                              -
                                                                                                                                                                                                            • params: ValidatesParameters

                                                                                                                                                                                                              The parameters for the request

                                                                                                                                                                                                              -

                                                                                                                                                                                                            Returns Promise<ValidatesReturnType>

                                                                                                                                                                                                            The result of the validation. ValidatesReturnType

                                                                                                                                                                                                            -
                                                                                                                                                                                                            import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                            import { validates } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                                            const client = createAvalancheCoreClient({
                                                                                                                                                                                                            chain: avalanche,
                                                                                                                                                                                                            transport: {
                                                                                                                                                                                                            type: "http",
                                                                                                                                                                                                            url: "<url>",
                                                                                                                                                                                                            },
                                                                                                                                                                                                            })

                                                                                                                                                                                                            const result = await validates(client, {
                                                                                                                                                                                                            tx: "0x1234567890abcdef",
                                                                                                                                                                                                            }) -
                                                                                                                                                                                                            - -
                                                                                                                                                                                                          diff --git a/client/docs/functions/methods_public.baseFee.html b/client/docs/functions/methods_public.baseFee.html deleted file mode 100644 index f48a468a..00000000 --- a/client/docs/functions/methods_public.baseFee.html +++ /dev/null @@ -1,10 +0,0 @@ -baseFee | Avalanche SDK Client
                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                            Function baseFee

                                                                                                                                                                                                            • Get the base fee for the next block.

                                                                                                                                                                                                              - -

                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                              • chain extends undefined | Chain

                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                              • client: Client<Transport, chain>

                                                                                                                                                                                                                The client to use.

                                                                                                                                                                                                                -

                                                                                                                                                                                                              Returns Promise<string>

                                                                                                                                                                                                              The base fee for the next block. BaseFeeReturnType

                                                                                                                                                                                                              -
                                                                                                                                                                                                              import { createClient, http } from '@avalanche-sdk/client'
                                                                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                              import { baseFee } from '@avalanche-sdk/client/methods/public'

                                                                                                                                                                                                              const client = createClient({
                                                                                                                                                                                                              chain: avalanche,
                                                                                                                                                                                                              transport: http(),
                                                                                                                                                                                                              })

                                                                                                                                                                                                              const baseFee = await baseFee(client) -
                                                                                                                                                                                                              - -
                                                                                                                                                                                                            diff --git a/client/docs/functions/methods_public.feeConfig.html b/client/docs/functions/methods_public.feeConfig.html deleted file mode 100644 index cc291ebf..00000000 --- a/client/docs/functions/methods_public.feeConfig.html +++ /dev/null @@ -1,8 +0,0 @@ -feeConfig | Avalanche SDK Client
                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                              Function feeConfig

                                                                                                                                                                                                              • Get the fee config for a specific block.

                                                                                                                                                                                                                -

                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                • chain extends undefined | Chain

                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                Returns Promise<FeeConfigReturnType>

                                                                                                                                                                                                                The fee config for the specified block. FeeConfigReturnType

                                                                                                                                                                                                                -
                                                                                                                                                                                                                import { createClient, http } from '@avalanche-sdk/client'
                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                import { feeConfig } from '@avalanche-sdk/client/methods/public'

                                                                                                                                                                                                                const client = createClient({
                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                transport: http(),
                                                                                                                                                                                                                })

                                                                                                                                                                                                                const feeConfig = await feeConfig(client, { blk: "0x1" }) -
                                                                                                                                                                                                                - -
                                                                                                                                                                                                              diff --git a/client/docs/functions/methods_public.getActiveRulesAt.html b/client/docs/functions/methods_public.getActiveRulesAt.html deleted file mode 100644 index 8c41aed5..00000000 --- a/client/docs/functions/methods_public.getActiveRulesAt.html +++ /dev/null @@ -1,8 +0,0 @@ -getActiveRulesAt | Avalanche SDK Client
                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                Function getActiveRulesAt

                                                                                                                                                                                                                diff --git a/client/docs/functions/methods_public.getChainConfig.html b/client/docs/functions/methods_public.getChainConfig.html deleted file mode 100644 index 123e7b97..00000000 --- a/client/docs/functions/methods_public.getChainConfig.html +++ /dev/null @@ -1,10 +0,0 @@ -getChainConfig | Avalanche SDK Client
                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                  Function getChainConfig

                                                                                                                                                                                                                  diff --git a/client/docs/functions/methods_public.maxPriorityFeePerGas.html b/client/docs/functions/methods_public.maxPriorityFeePerGas.html deleted file mode 100644 index 53f12f9b..00000000 --- a/client/docs/functions/methods_public.maxPriorityFeePerGas.html +++ /dev/null @@ -1,10 +0,0 @@ -maxPriorityFeePerGas | Avalanche SDK Client
                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                    Function maxPriorityFeePerGas

                                                                                                                                                                                                                    • Get the maximum priority fee per gas for the next block.

                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                      • chain extends undefined | Chain

                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                      • client: Client<Transport, chain>

                                                                                                                                                                                                                        The client to use.

                                                                                                                                                                                                                        -

                                                                                                                                                                                                                      Returns Promise<string>

                                                                                                                                                                                                                      The maximum priority fee per gas for the next block. MaxPriorityFeePerGasReturnType

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      import { createClient, http } from '@avalanche-sdk/client'
                                                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                      import { maxPriorityFeePerGas } from '@avalanche-sdk/client/methods/public'

                                                                                                                                                                                                                      const client = createClient({
                                                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                                                      transport: http(),
                                                                                                                                                                                                                      })

                                                                                                                                                                                                                      const maxPriorityFeePerGas = await maxPriorityFeePerGas(client) -
                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                    diff --git a/client/docs/functions/methods_wallet.addOrModifyXPAddressAlias.html b/client/docs/functions/methods_wallet.addOrModifyXPAddressAlias.html deleted file mode 100644 index 3507c3e6..00000000 --- a/client/docs/functions/methods_wallet.addOrModifyXPAddressAlias.html +++ /dev/null @@ -1 +0,0 @@ -addOrModifyXPAddressAlias | Avalanche SDK Client
                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                      Function addOrModifyXPAddressAlias

                                                                                                                                                                                                                      • Parameters

                                                                                                                                                                                                                        • address: undefined | string[]
                                                                                                                                                                                                                        • alias: string

                                                                                                                                                                                                                        Returns undefined | string[]

                                                                                                                                                                                                                      diff --git a/client/docs/functions/methods_wallet.getAccountPubKey.html b/client/docs/functions/methods_wallet.getAccountPubKey.html deleted file mode 100644 index b064cbda..00000000 --- a/client/docs/functions/methods_wallet.getAccountPubKey.html +++ /dev/null @@ -1,7 +0,0 @@ -getAccountPubKey | Avalanche SDK Client
                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                        Function getAccountPubKey

                                                                                                                                                                                                                        • Get the public key of the account

                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                          Returns Promise<GetAccountPubKeyReturnType>

                                                                                                                                                                                                                          The public key of the account GetAccountPubKeyReturnType

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          import { createWalletCoreClient, http } from '@avalanche-sdk/client'
                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                          import { getAccountPubKey } from '@avalanche-sdk/client/methods/wallet'

                                                                                                                                                                                                                          // Create an local avalanche account otherwise pass custom transport
                                                                                                                                                                                                                          const privateKey = "0x..."
                                                                                                                                                                                                                          const account = privateKeyToAvalancheAccount(privateKey)

                                                                                                                                                                                                                          // Create a wallet core client
                                                                                                                                                                                                                          const client = createWalletCoreClient({
                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                          url: "https://api.avax.network/ext/bc/C/rpc",
                                                                                                                                                                                                                          },
                                                                                                                                                                                                                          account,
                                                                                                                                                                                                                          })

                                                                                                                                                                                                                          // or pass custom transport
                                                                                                                                                                                                                          const client = createWalletCoreClient({
                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                          type: "custom",
                                                                                                                                                                                                                          provider: window.avalanche!,
                                                                                                                                                                                                                          },
                                                                                                                                                                                                                          })


                                                                                                                                                                                                                          const pubKey = await getAccountPubKey(client) -
                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                        diff --git a/client/docs/functions/methods_wallet.send.html b/client/docs/functions/methods_wallet.send.html deleted file mode 100644 index 1555c4e5..00000000 --- a/client/docs/functions/methods_wallet.send.html +++ /dev/null @@ -1,8 +0,0 @@ -send | Avalanche SDK Client
                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                          Function send

                                                                                                                                                                                                                          diff --git a/client/docs/functions/methods_wallet.sendXPTransaction.html b/client/docs/functions/methods_wallet.sendXPTransaction.html deleted file mode 100644 index 6556031d..00000000 --- a/client/docs/functions/methods_wallet.sendXPTransaction.html +++ /dev/null @@ -1,8 +0,0 @@ -sendXPTransaction | Avalanche SDK Client
                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                            Function sendXPTransaction

                                                                                                                                                                                                                            diff --git a/client/docs/functions/methods_wallet.signXPMessage.html b/client/docs/functions/methods_wallet.signXPMessage.html deleted file mode 100644 index e261dd2e..00000000 --- a/client/docs/functions/methods_wallet.signXPMessage.html +++ /dev/null @@ -1,10 +0,0 @@ -signXPMessage | Avalanche SDK Client
                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                              Function signXPMessage

                                                                                                                                                                                                                              diff --git a/client/docs/functions/methods_wallet.signXPTransaction.html b/client/docs/functions/methods_wallet.signXPTransaction.html deleted file mode 100644 index fdcabd6f..00000000 --- a/client/docs/functions/methods_wallet.signXPTransaction.html +++ /dev/null @@ -1,8 +0,0 @@ -signXPTransaction | Avalanche SDK Client
                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                Function signXPTransaction

                                                                                                                                                                                                                                diff --git a/client/docs/functions/methods_wallet.waitForTxn.html b/client/docs/functions/methods_wallet.waitForTxn.html deleted file mode 100644 index 72c57333..00000000 --- a/client/docs/functions/methods_wallet.waitForTxn.html +++ /dev/null @@ -1 +0,0 @@ -waitForTxn | Avalanche SDK Client
                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                  Function waitForTxn

                                                                                                                                                                                                                                  diff --git a/client/docs/functions/methods_wallet_cChain.prepareExportTxn.html b/client/docs/functions/methods_wallet_cChain.prepareExportTxn.html deleted file mode 100644 index 8fa8a613..00000000 --- a/client/docs/functions/methods_wallet_cChain.prepareExportTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareExportTxn | Avalanche SDK Client
                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                    Function prepareExportTxn

                                                                                                                                                                                                                                    diff --git a/client/docs/functions/methods_wallet_cChain.prepareImportTxn.html b/client/docs/functions/methods_wallet_cChain.prepareImportTxn.html deleted file mode 100644 index 3ec60d6c..00000000 --- a/client/docs/functions/methods_wallet_cChain.prepareImportTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareImportTxn | Avalanche SDK Client
                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                      Function prepareImportTxn

                                                                                                                                                                                                                                      diff --git a/client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessDelegatorTx.html b/client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessDelegatorTx.html deleted file mode 100644 index 3dfd26b8..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessDelegatorTx.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareAddPermissionlessDelegatorTx | Avalanche SDK Client
                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                        Function prepareAddPermissionlessDelegatorTx

                                                                                                                                                                                                                                        diff --git a/client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessValidatorTxn.html b/client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessValidatorTxn.html deleted file mode 100644 index 4c36bc69..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareAddPermissionlessValidatorTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareAddPermissionlessValidatorTxn | Avalanche SDK Client
                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                          Function prepareAddPermissionlessValidatorTxn

                                                                                                                                                                                                                                          diff --git a/client/docs/functions/methods_wallet_pChain.prepareAddSubnetValidatorTxn.html b/client/docs/functions/methods_wallet_pChain.prepareAddSubnetValidatorTxn.html deleted file mode 100644 index aeb305cf..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareAddSubnetValidatorTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareAddSubnetValidatorTxn | Avalanche SDK Client
                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                            Function prepareAddSubnetValidatorTxn

                                                                                                                                                                                                                                            diff --git a/client/docs/functions/methods_wallet_pChain.prepareBaseTxn.html b/client/docs/functions/methods_wallet_pChain.prepareBaseTxn.html deleted file mode 100644 index ca8302fb..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareBaseTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareBaseTxn | Avalanche SDK Client
                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                              Preparing search index...
                                                                                                                                                                                                                                              diff --git a/client/docs/functions/methods_wallet_pChain.prepareConvertSubnetToL1Txn.html b/client/docs/functions/methods_wallet_pChain.prepareConvertSubnetToL1Txn.html deleted file mode 100644 index bab67d47..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareConvertSubnetToL1Txn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareConvertSubnetToL1Txn | Avalanche SDK Client
                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                Function prepareConvertSubnetToL1Txn

                                                                                                                                                                                                                                                diff --git a/client/docs/functions/methods_wallet_pChain.prepareCreateChainTxn.html b/client/docs/functions/methods_wallet_pChain.prepareCreateChainTxn.html deleted file mode 100644 index c8d0b253..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareCreateChainTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareCreateChainTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                  Function prepareCreateChainTxn

                                                                                                                                                                                                                                                  diff --git a/client/docs/functions/methods_wallet_pChain.prepareCreateSubnetTxn.html b/client/docs/functions/methods_wallet_pChain.prepareCreateSubnetTxn.html deleted file mode 100644 index 5c0f50f6..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareCreateSubnetTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareCreateSubnetTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                    Function prepareCreateSubnetTxn

                                                                                                                                                                                                                                                    diff --git a/client/docs/functions/methods_wallet_pChain.prepareDisableL1ValidatorTxn.html b/client/docs/functions/methods_wallet_pChain.prepareDisableL1ValidatorTxn.html deleted file mode 100644 index c4a4f9f6..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareDisableL1ValidatorTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareDisableL1ValidatorTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                      Function prepareDisableL1ValidatorTxn

                                                                                                                                                                                                                                                      diff --git a/client/docs/functions/methods_wallet_pChain.prepareExportTxn.html b/client/docs/functions/methods_wallet_pChain.prepareExportTxn.html deleted file mode 100644 index 173dd61d..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareExportTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareExportTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                        Function prepareExportTxn

                                                                                                                                                                                                                                                        diff --git a/client/docs/functions/methods_wallet_pChain.prepareImportTxn.html b/client/docs/functions/methods_wallet_pChain.prepareImportTxn.html deleted file mode 100644 index 2cac200d..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareImportTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareImportTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                          Function prepareImportTxn

                                                                                                                                                                                                                                                          diff --git a/client/docs/functions/methods_wallet_pChain.prepareIncreaseL1ValidatorBalanceTxn.html b/client/docs/functions/methods_wallet_pChain.prepareIncreaseL1ValidatorBalanceTxn.html deleted file mode 100644 index 638201ca..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareIncreaseL1ValidatorBalanceTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareIncreaseL1ValidatorBalanceTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                            Function prepareIncreaseL1ValidatorBalanceTxn

                                                                                                                                                                                                                                                            diff --git a/client/docs/functions/methods_wallet_pChain.prepareRegisterL1ValidatorTxn.html b/client/docs/functions/methods_wallet_pChain.prepareRegisterL1ValidatorTxn.html deleted file mode 100644 index aac3f5dc..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareRegisterL1ValidatorTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareRegisterL1ValidatorTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                              Function prepareRegisterL1ValidatorTxn

                                                                                                                                                                                                                                                              diff --git a/client/docs/functions/methods_wallet_pChain.prepareRemoveSubnetValidatorTxn.html b/client/docs/functions/methods_wallet_pChain.prepareRemoveSubnetValidatorTxn.html deleted file mode 100644 index e845ce6f..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareRemoveSubnetValidatorTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareRemoveSubnetValidatorTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                Function prepareRemoveSubnetValidatorTxn

                                                                                                                                                                                                                                                                diff --git a/client/docs/functions/methods_wallet_pChain.prepareSetL1ValidatorWeightTxn.html b/client/docs/functions/methods_wallet_pChain.prepareSetL1ValidatorWeightTxn.html deleted file mode 100644 index e9a0b540..00000000 --- a/client/docs/functions/methods_wallet_pChain.prepareSetL1ValidatorWeightTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareSetL1ValidatorWeightTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                  Function prepareSetL1ValidatorWeightTxn

                                                                                                                                                                                                                                                                  diff --git a/client/docs/functions/methods_wallet_xChain.prepareBaseTxn.html b/client/docs/functions/methods_wallet_xChain.prepareBaseTxn.html deleted file mode 100644 index 89eb2d75..00000000 --- a/client/docs/functions/methods_wallet_xChain.prepareBaseTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareBaseTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                    Preparing search index...
                                                                                                                                                                                                                                                                    diff --git a/client/docs/functions/methods_wallet_xChain.prepareExportTxn.html b/client/docs/functions/methods_wallet_xChain.prepareExportTxn.html deleted file mode 100644 index 13d5c952..00000000 --- a/client/docs/functions/methods_wallet_xChain.prepareExportTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareExportTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                      Function prepareExportTxn

                                                                                                                                                                                                                                                                      diff --git a/client/docs/functions/methods_wallet_xChain.prepareImportTxn.html b/client/docs/functions/methods_wallet_xChain.prepareImportTxn.html deleted file mode 100644 index 4d3af71b..00000000 --- a/client/docs/functions/methods_wallet_xChain.prepareImportTxn.html +++ /dev/null @@ -1,9 +0,0 @@ -prepareImportTxn | Avalanche SDK Client
                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                        Function prepareImportTxn

                                                                                                                                                                                                                                                                        diff --git a/client/docs/functions/methods_xChain.buildGenesis.html b/client/docs/functions/methods_xChain.buildGenesis.html deleted file mode 100644 index 262a1f4b..00000000 --- a/client/docs/functions/methods_xChain.buildGenesis.html +++ /dev/null @@ -1,11 +0,0 @@ -buildGenesis | Avalanche SDK Client
                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                          Function buildGenesis

                                                                                                                                                                                                                                                                          • Given a JSON representation of this Virtual Machine's genesis state, create the byte representation of that state.

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                            • chain extends undefined | Chain

                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                            Returns Promise<BuildGenesisReturnType>

                                                                                                                                                                                                                                                                            The genesis bytes. BuildGenesisReturnType

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                            import { buildGenesis } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                            const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                            chain: avalanche,
                                                                                                                                                                                                                                                                            transport: {
                                                                                                                                                                                                                                                                            type: "http",
                                                                                                                                                                                                                                                                            url: "<url>",
                                                                                                                                                                                                                                                                            },
                                                                                                                                                                                                                                                                            })

                                                                                                                                                                                                                                                                            const genesis = await buildGenesis(client, {
                                                                                                                                                                                                                                                                            networkID: 16,
                                                                                                                                                                                                                                                                            genesisData: {
                                                                                                                                                                                                                                                                            asset1: {
                                                                                                                                                                                                                                                                            name: "myFixedCapAsset",
                                                                                                                                                                                                                                                                            symbol: "MFCA",
                                                                                                                                                                                                                                                                            initialState: {
                                                                                                                                                                                                                                                                            fixedCap: [
                                                                                                                                                                                                                                                                            {
                                                                                                                                                                                                                                                                            amount: 100000,
                                                                                                                                                                                                                                                                            address: "avax13ery2kvdrkd2nkquvs892gl8hg7mq4a6ufnrn6"
                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                            ]
                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                            }) -
                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                          diff --git a/client/docs/functions/methods_xChain.getAllBalances.html b/client/docs/functions/methods_xChain.getAllBalances.html deleted file mode 100644 index 2b7be3b2..00000000 --- a/client/docs/functions/methods_xChain.getAllBalances.html +++ /dev/null @@ -1,11 +0,0 @@ -getAllBalances | Avalanche SDK Client
                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                            Function getAllBalances

                                                                                                                                                                                                                                                                            diff --git a/client/docs/functions/methods_xChain.getAssetDescription.html b/client/docs/functions/methods_xChain.getAssetDescription.html deleted file mode 100644 index e4deb23e..00000000 --- a/client/docs/functions/methods_xChain.getAssetDescription.html +++ /dev/null @@ -1,11 +0,0 @@ -getAssetDescription | Avalanche SDK Client
                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                              Function getAssetDescription

                                                                                                                                                                                                                                                                              diff --git a/client/docs/functions/methods_xChain.getBalance.html b/client/docs/functions/methods_xChain.getBalance.html deleted file mode 100644 index 0b806797..00000000 --- a/client/docs/functions/methods_xChain.getBalance.html +++ /dev/null @@ -1,11 +0,0 @@ -getBalance | Avalanche SDK Client
                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                Function getBalance

                                                                                                                                                                                                                                                                                • Get the balance of an asset controlled by given addresses.

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                  • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                  Returns Promise<GetBalanceReturnType>

                                                                                                                                                                                                                                                                                  The balance of the asset. GetBalanceReturnType

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                  import { getBalance } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                  const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                  url: "<url>",
                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                  const balance = await getBalance(client, {
                                                                                                                                                                                                                                                                                  addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"],
                                                                                                                                                                                                                                                                                  assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                diff --git a/client/docs/functions/methods_xChain.getBlock.html b/client/docs/functions/methods_xChain.getBlock.html deleted file mode 100644 index 108a8a78..00000000 --- a/client/docs/functions/methods_xChain.getBlock.html +++ /dev/null @@ -1,11 +0,0 @@ -getBlock | Avalanche SDK Client
                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                  Function getBlock

                                                                                                                                                                                                                                                                                  • Type Parameters

                                                                                                                                                                                                                                                                                    • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                    • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                                                                                                      The client to use. AvalancheCoreClient

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                    • params: GetBlockParameters

                                                                                                                                                                                                                                                                                      The block ID and encoding format. GetBlockParameters

                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                    Returns Promise<XChainBlockType>

                                                                                                                                                                                                                                                                                    The block data. GetBlockReturnType

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                    import { getBlock } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                    const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                                                                                                                                    transport: {
                                                                                                                                                                                                                                                                                    type: "http",
                                                                                                                                                                                                                                                                                    url: "<url>",
                                                                                                                                                                                                                                                                                    },
                                                                                                                                                                                                                                                                                    })

                                                                                                                                                                                                                                                                                    const block = await getBlock(client, {
                                                                                                                                                                                                                                                                                    blockID: "d7WYmb8VeZNHsny3EJCwMm6QA37s1EHwMxw1Y71V3FqPZ5EFG",
                                                                                                                                                                                                                                                                                    encoding: "hex"
                                                                                                                                                                                                                                                                                    }) -
                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                  diff --git a/client/docs/functions/methods_xChain.getBlockByHeight.html b/client/docs/functions/methods_xChain.getBlockByHeight.html deleted file mode 100644 index 5e95648a..00000000 --- a/client/docs/functions/methods_xChain.getBlockByHeight.html +++ /dev/null @@ -1,11 +0,0 @@ -getBlockByHeight | Avalanche SDK Client
                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                    Function getBlockByHeight

                                                                                                                                                                                                                                                                                    diff --git a/client/docs/functions/methods_xChain.getHeight.html b/client/docs/functions/methods_xChain.getHeight.html deleted file mode 100644 index 4e70056f..00000000 --- a/client/docs/functions/methods_xChain.getHeight.html +++ /dev/null @@ -1,10 +0,0 @@ -getHeight | Avalanche SDK Client
                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                      Function getHeight

                                                                                                                                                                                                                                                                                      • Get the height of the blockchain.

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                        • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                        • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                                                                                                          The client to use. AvalancheCoreClient

                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                        Returns Promise<GetHeightReturnType>

                                                                                                                                                                                                                                                                                        The height of the blockchain. GetHeightReturnType

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                        import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                        import { getHeight } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                        const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                        chain: avalanche,
                                                                                                                                                                                                                                                                                        transport: {
                                                                                                                                                                                                                                                                                        type: "http",
                                                                                                                                                                                                                                                                                        url: "<url>",
                                                                                                                                                                                                                                                                                        },
                                                                                                                                                                                                                                                                                        })

                                                                                                                                                                                                                                                                                        const height = await getHeight(client) -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                      diff --git a/client/docs/functions/methods_xChain.getTx.html b/client/docs/functions/methods_xChain.getTx.html deleted file mode 100644 index 2236c4c0..00000000 --- a/client/docs/functions/methods_xChain.getTx.html +++ /dev/null @@ -1,11 +0,0 @@ -getTx | Avalanche SDK Client
                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                        Function getTx

                                                                                                                                                                                                                                                                                        • Type Parameters

                                                                                                                                                                                                                                                                                          • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                          • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                                                                                                            The client to use. AvalancheCoreClient

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                          • params: GetTxParameters

                                                                                                                                                                                                                                                                                            The transaction ID and encoding format. GetTxParameters

                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                          Returns Promise<XChainTransactionType>

                                                                                                                                                                                                                                                                                          The transaction data. GetTxReturnType

                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                          import { getTx } from '@avalanche-sdk/client/methods/xchain'

                                                                                                                                                                                                                                                                                          const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                          url: "<url>",
                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                          const tx = await getTx(client, {
                                                                                                                                                                                                                                                                                          txID: "2QouvMUbQ6tchBHSJdZ7MoFhsQhHt5KqZQqHdZ7MoFhsQhHt5KqZQ",
                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                        diff --git a/client/docs/functions/methods_xChain.getTxFee.html b/client/docs/functions/methods_xChain.getTxFee.html deleted file mode 100644 index 9f445cdf..00000000 --- a/client/docs/functions/methods_xChain.getTxFee.html +++ /dev/null @@ -1,10 +0,0 @@ -getTxFee | Avalanche SDK Client
                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                          Function getTxFee

                                                                                                                                                                                                                                                                                          • Get the transaction fee for a given transaction.

                                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                            • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                            • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                                                                                                              The client to use. AvalancheCoreClient

                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                            Returns Promise<GetTxFeeReturnType>

                                                                                                                                                                                                                                                                                            The transaction fee. GetTxFeeReturnType

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                            import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                            import { getTxFee } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                            const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                            chain: avalanche,
                                                                                                                                                                                                                                                                                            transport: {
                                                                                                                                                                                                                                                                                            type: "http",
                                                                                                                                                                                                                                                                                            url: "<url>",
                                                                                                                                                                                                                                                                                            },
                                                                                                                                                                                                                                                                                            });

                                                                                                                                                                                                                                                                                            const txFee = await getTxFee(client -
                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                          diff --git a/client/docs/functions/methods_xChain.getTxStatus.html b/client/docs/functions/methods_xChain.getTxStatus.html deleted file mode 100644 index e29190a2..00000000 --- a/client/docs/functions/methods_xChain.getTxStatus.html +++ /dev/null @@ -1,11 +0,0 @@ -getTxStatus | Avalanche SDK Client
                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                            Function getTxStatus

                                                                                                                                                                                                                                                                                            • Type Parameters

                                                                                                                                                                                                                                                                                              • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                              Returns Promise<GetTxStatusReturnType>

                                                                                                                                                                                                                                                                                              The transaction status. GetTxStatusReturnType

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                              import { getTxStatus } from '@avalanche-sdk/client/methods/xchain'

                                                                                                                                                                                                                                                                                              const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                              chain: avalanche,
                                                                                                                                                                                                                                                                                              transport: {
                                                                                                                                                                                                                                                                                              type: "http",
                                                                                                                                                                                                                                                                                              url: "<url>",
                                                                                                                                                                                                                                                                                              },
                                                                                                                                                                                                                                                                                              })

                                                                                                                                                                                                                                                                                              const status = await getTxStatus(client, {
                                                                                                                                                                                                                                                                                              txID: "2QouvMUbQ6tchBHSJdZ7MoFhsQhHt5KqZQqHdZ7MoFhsQhHt5KqZQ"
                                                                                                                                                                                                                                                                                              }) -
                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                            diff --git a/client/docs/functions/methods_xChain.getUTXOs.html b/client/docs/functions/methods_xChain.getUTXOs.html deleted file mode 100644 index 79ba3dfa..00000000 --- a/client/docs/functions/methods_xChain.getUTXOs.html +++ /dev/null @@ -1,11 +0,0 @@ -getUTXOs | Avalanche SDK Client
                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                              Function getUTXOs

                                                                                                                                                                                                                                                                                              • Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                                                                                                • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                                                                                                                  The client to use. AvalancheCoreClient

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                • params: GetUTXOsParameters

                                                                                                                                                                                                                                                                                                  The addresses and source chain. GetUTXOsParameters

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                Returns Promise<GetUTXOsReturnType>

                                                                                                                                                                                                                                                                                                The UTXOs. GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                                import { getUTXOs } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                                const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                url: "<url>",
                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                const utxos = await getUTXOs(client, {
                                                                                                                                                                                                                                                                                                addresses: ["X-avax1wstkjcj4z8n0n6utxmcxap6mn9nrdz5k0v3fjh"],
                                                                                                                                                                                                                                                                                                sourceChain: "X"
                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                              diff --git a/client/docs/functions/methods_xChain.issueTx.html b/client/docs/functions/methods_xChain.issueTx.html deleted file mode 100644 index d37f8878..00000000 --- a/client/docs/functions/methods_xChain.issueTx.html +++ /dev/null @@ -1,11 +0,0 @@ -issueTx | Avalanche SDK Client
                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                Function issueTx

                                                                                                                                                                                                                                                                                                • Type Parameters

                                                                                                                                                                                                                                                                                                  • chain extends undefined | Chain

                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                  • client: { extend: <const client extends { [key: string]: unknown }>(fn: (client: { extend: ... }) => client) => { [K in (...) | (...) | (...)]: (...)[(...)] } }

                                                                                                                                                                                                                                                                                                    The client to use. AvalancheCoreClient

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                  • params: IssueTxParameters

                                                                                                                                                                                                                                                                                                    The transaction to issue. IssueTxParameters

                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                  Returns Promise<IssueTxReturnType>

                                                                                                                                                                                                                                                                                                  The transaction ID. IssueTxReturnType

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  import { createAvalancheCoreClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'
                                                                                                                                                                                                                                                                                                  import { issueTx } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                                  const client = createAvalancheCoreClient({
                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                  url: "<url>",
                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                  const tx = await issueTx(client, {
                                                                                                                                                                                                                                                                                                  tx: "0x1234567890abcdef"
                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                diff --git a/client/docs/functions/utils.CB58ToHex.html b/client/docs/functions/utils.CB58ToHex.html deleted file mode 100644 index e85bc2cc..00000000 --- a/client/docs/functions/utils.CB58ToHex.html +++ /dev/null @@ -1,7 +0,0 @@ -CB58ToHex | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                  Function CB58ToHex

                                                                                                                                                                                                                                                                                                  • Decodes a CB58 string into a hex string (0x...).

                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                    • cb58: string

                                                                                                                                                                                                                                                                                                      The CB58 string to decode.

                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                    Returns `0x${string}`

                                                                                                                                                                                                                                                                                                    The hex string.

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    import { CB58ToHex } from "@avalanche-sdk/client/utils";

                                                                                                                                                                                                                                                                                                    const hex = CB58ToHex("AhhdUnShjkljhSDSSHJl..."); -
                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/functions/utils.getTxFromBytes.html b/client/docs/functions/utils.getTxFromBytes.html deleted file mode 100644 index 52553103..00000000 --- a/client/docs/functions/utils.getTxFromBytes.html +++ /dev/null @@ -1,8 +0,0 @@ -getTxFromBytes | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                    Function getTxFromBytes

                                                                                                                                                                                                                                                                                                    • Get a transaction from a buffer or hex string

                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                      • txBytes: string

                                                                                                                                                                                                                                                                                                        The buffer or hex string to get the transaction from string or Uint8Array

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      • chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                        The chain alias to get the transaction from "P" | "X" | "C"

                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                      Returns [Transaction, Credential[]]

                                                                                                                                                                                                                                                                                                      A array with the transaction Common.Transaction and credentials []

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      import { getTxFromBytes } from "@avalanche-sdk/client/utils";

                                                                                                                                                                                                                                                                                                      const [tx, credentials] = getTxFromBytes("0x1234567890abcdef", "P"); -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/functions/utils.getUnsignedTxFromBytes.html b/client/docs/functions/utils.getUnsignedTxFromBytes.html deleted file mode 100644 index 41250f9e..00000000 --- a/client/docs/functions/utils.getUnsignedTxFromBytes.html +++ /dev/null @@ -1,8 +0,0 @@ -getUnsignedTxFromBytes | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                      Function getUnsignedTxFromBytes

                                                                                                                                                                                                                                                                                                      • Get an unsigned transaction from a buffer or hex string

                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                        • txBytes: string

                                                                                                                                                                                                                                                                                                          The buffer or hex string to get the transaction from string or Uint8Array

                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                        • chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                          The chain alias to get the transaction from "P" | "X" | "C"

                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                        Returns UnsignedTx

                                                                                                                                                                                                                                                                                                        An unsigned transaction UnsignedTx

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        import { getUnsignedTxFromBytes } from "@avalanche-sdk/client/utils";

                                                                                                                                                                                                                                                                                                        const unsignedTx = getUnsignedTxFromBytes("0x1234567890abcdef", "P"); -
                                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/functions/utils.getUtxoFromBytes.html b/client/docs/functions/utils.getUtxoFromBytes.html deleted file mode 100644 index a9ba4ef1..00000000 --- a/client/docs/functions/utils.getUtxoFromBytes.html +++ /dev/null @@ -1,8 +0,0 @@ -getUtxoFromBytes | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                        Function getUtxoFromBytes

                                                                                                                                                                                                                                                                                                        • Get a Utxo from a buffer or hex string

                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                          • utxoBytesOrHex: string | Uint8Array<ArrayBufferLike>

                                                                                                                                                                                                                                                                                                            The buffer or hex string to get the Utxo from string or Uint8Array

                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                          • chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                            The chain alias to get the Utxo from "P" | "X" | "C"

                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                          Returns Utxo

                                                                                                                                                                                                                                                                                                          The Utxo Utxo

                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                          import { getUtxoFromBytes } from "@avalanche-sdk/client/utils";

                                                                                                                                                                                                                                                                                                          const utxo = getUtxoFromBytes("0x1234567890abcdef", "P"); -
                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/functions/utils.getUtxosForAddress.html b/client/docs/functions/utils.getUtxosForAddress.html deleted file mode 100644 index e40185ff..00000000 --- a/client/docs/functions/utils.getUtxosForAddress.html +++ /dev/null @@ -1,8 +0,0 @@ -getUtxosForAddress | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                          Function getUtxosForAddress

                                                                                                                                                                                                                                                                                                          • Get the UTXOs for an address.

                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                            Returns Promise<Utxo<Serializable>[]>

                                                                                                                                                                                                                                                                                                            The array of UTXOs. May contain duplicates. []

                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                            import { createAvalancheWalletCoreClient } from "@avalanche-sdk/client";
                                                                                                                                                                                                                                                                                                            import { avalanche } from "@avalanche-sdk/client/chains";

                                                                                                                                                                                                                                                                                                            const client = createAvalancheWalletCoreClient({
                                                                                                                                                                                                                                                                                                            chain: avalanche,
                                                                                                                                                                                                                                                                                                            transport: {
                                                                                                                                                                                                                                                                                                            type: "http",
                                                                                                                                                                                                                                                                                                            },
                                                                                                                                                                                                                                                                                                            });

                                                                                                                                                                                                                                                                                                            const utxos = await getUtxosForAddress(client, {
                                                                                                                                                                                                                                                                                                            address: "0x1234567890123456789012345678901234567890",
                                                                                                                                                                                                                                                                                                            chainAlias: "P",
                                                                                                                                                                                                                                                                                                            }); -
                                                                                                                                                                                                                                                                                                            - -
                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/functions/utils.hexToCB58.html b/client/docs/functions/utils.hexToCB58.html deleted file mode 100644 index 30a769da..00000000 --- a/client/docs/functions/utils.hexToCB58.html +++ /dev/null @@ -1,7 +0,0 @@ -hexToCB58 | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                            Function hexToCB58

                                                                                                                                                                                                                                                                                                            • Encodes a hex string (0x...) into CB58.

                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                              • hex: `0x${string}`

                                                                                                                                                                                                                                                                                                                The hex string to encode.

                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                              Returns string

                                                                                                                                                                                                                                                                                                              The CB58 encoded string.

                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                              import { hexToCB58 } from "@avalanche-sdk/client/utils";

                                                                                                                                                                                                                                                                                                              const cb58 = hexToCB58("0x1234567890abcdef"); -
                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/hierarchy.html b/client/docs/hierarchy.html deleted file mode 100644 index a09a95c0..00000000 --- a/client/docs/hierarchy.html +++ /dev/null @@ -1 +0,0 @@ -Avalanche SDK Client
                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                              Avalanche SDK Client

                                                                                                                                                                                                                                                                                                              Hierarchy Summary

                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/index.html b/client/docs/index.html deleted file mode 100644 index 564ab42a..00000000 --- a/client/docs/index.html +++ /dev/null @@ -1,264 +0,0 @@ -Avalanche SDK Client
                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                Avalanche SDK Client

                                                                                                                                                                                                                                                                                                                Avalanche SDK Client

                                                                                                                                                                                                                                                                                                                A TypeScript SDK for interacting with the Avalanche network through JSON-RPC APIs. This SDK provides a comprehensive set of tools to interact with all Avalanche chains (P-Chain, X-Chain, C-Chain) and various APIs, including wallet functionality for transaction signing and management.

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                npm install @avalanche-sdk/client
                                                                                                                                                                                                                                                                                                                # or
                                                                                                                                                                                                                                                                                                                yarn add @avalanche-sdk/client
                                                                                                                                                                                                                                                                                                                # or
                                                                                                                                                                                                                                                                                                                pnpm add @avalanche-sdk/client -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                import { createAvalancheClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                // Create an Avalanche client
                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                // Access different chain clients
                                                                                                                                                                                                                                                                                                                const pChainClient = client.pChain
                                                                                                                                                                                                                                                                                                                const xChainClient = client.xChain
                                                                                                                                                                                                                                                                                                                const cChainClient = client.cChain

                                                                                                                                                                                                                                                                                                                // Access API clients
                                                                                                                                                                                                                                                                                                                const adminClient = client.admin
                                                                                                                                                                                                                                                                                                                const infoClient = client.info
                                                                                                                                                                                                                                                                                                                const healthClient = client.health
                                                                                                                                                                                                                                                                                                                const indexPChainBlockClient = client.indexPChainBlock

                                                                                                                                                                                                                                                                                                                // Example: Get the latest block number
                                                                                                                                                                                                                                                                                                                const blockNumber = await pChainClient.getBlockNumber()

                                                                                                                                                                                                                                                                                                                // Example: Get base fee
                                                                                                                                                                                                                                                                                                                const baseFee = await client.getBaseFee() -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                import { createAvalancheWalletClient, privateKeyToAvalancheAccount } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                // Create an account from private key
                                                                                                                                                                                                                                                                                                                const account = privateKeyToAvalancheAccount("0x1234567890123456789012345678901234567890123456789012345678901234")

                                                                                                                                                                                                                                                                                                                // Get P chain Address and Evm Address
                                                                                                                                                                                                                                                                                                                const evmAddress = account.getEVMAddress()
                                                                                                                                                                                                                                                                                                                const pchainAddress = account.getXPAddress("P", "fuji")

                                                                                                                                                                                                                                                                                                                // Create a wallet client
                                                                                                                                                                                                                                                                                                                const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                account,
                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                // Prepare a txn request
                                                                                                                                                                                                                                                                                                                const xChainExportTxnRequest = await walletClient.xChain.prepareExportTxn({
                                                                                                                                                                                                                                                                                                                exportedOutputs: [
                                                                                                                                                                                                                                                                                                                {
                                                                                                                                                                                                                                                                                                                addresses: [account.getXPAddress("X", "fuji")], // X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz
                                                                                                                                                                                                                                                                                                                amount: 0.001,
                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                ],
                                                                                                                                                                                                                                                                                                                destinationChain: "P",
                                                                                                                                                                                                                                                                                                                });

                                                                                                                                                                                                                                                                                                                // Send an XP transaction
                                                                                                                                                                                                                                                                                                                const result = await walletClient.sendXPTransaction(xChainExportTxnRequest)

                                                                                                                                                                                                                                                                                                                // Sign a message
                                                                                                                                                                                                                                                                                                                const signedMessage = await walletClient.signXPMessage({
                                                                                                                                                                                                                                                                                                                message: "Hello Avalanche",
                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                // Get account public key
                                                                                                                                                                                                                                                                                                                const pubKey = await walletClient.getAccountPubKey()

                                                                                                                                                                                                                                                                                                                // Wait for transaction confirmation
                                                                                                                                                                                                                                                                                                                await walletClient.waitForTxn({
                                                                                                                                                                                                                                                                                                                txID: "2QouvMUbQ6oy7yQ9tLvL3L8tGQG2QK1wJ1q1wJ1q1wJ1q1wJ1q1wJ1q1wJ1",
                                                                                                                                                                                                                                                                                                                chainAlias: "X"
                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                // P-Chain wallet operations
                                                                                                                                                                                                                                                                                                                const pChainWallet = walletClient.pChain

                                                                                                                                                                                                                                                                                                                // Prepare add validator transaction
                                                                                                                                                                                                                                                                                                                const validatorTx = await pChainWallet.prepareAddPermissionlessValidatorTxn({
                                                                                                                                                                                                                                                                                                                nodeId: "NodeID-7Xhw2mDxuDS44j42TCB6U5579esbSt3Lg",
                                                                                                                                                                                                                                                                                                                stakeInAvax: 1,
                                                                                                                                                                                                                                                                                                                end: 1716441600,
                                                                                                                                                                                                                                                                                                                rewardAddresses: ["P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"],
                                                                                                                                                                                                                                                                                                                threshold: 1,
                                                                                                                                                                                                                                                                                                                publicKey: "0x1234567890123456789012345678901234567890",
                                                                                                                                                                                                                                                                                                                signature: "0x1234567890123456789012345678901234567890",
                                                                                                                                                                                                                                                                                                                locktime: 1716441600,
                                                                                                                                                                                                                                                                                                                delegatorRewardPercentage: 2.5,
                                                                                                                                                                                                                                                                                                                delegatorRewardAddresses: ["P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"],
                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                // X-Chain wallet operations
                                                                                                                                                                                                                                                                                                                const xChainWallet = walletClient.xChain

                                                                                                                                                                                                                                                                                                                // Prepare base transaction
                                                                                                                                                                                                                                                                                                                const baseTx = await xChainWallet.prepareBaseTxn({
                                                                                                                                                                                                                                                                                                                outputs: [{
                                                                                                                                                                                                                                                                                                                addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"],
                                                                                                                                                                                                                                                                                                                amount: 1000000000, // 1 AVAX
                                                                                                                                                                                                                                                                                                                }],
                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                // C-Chain wallet operations
                                                                                                                                                                                                                                                                                                                const cChainWallet = walletClient.cChain

                                                                                                                                                                                                                                                                                                                // Prepare export transaction
                                                                                                                                                                                                                                                                                                                const exportTx = await cChainWallet.prepareExportTxn({
                                                                                                                                                                                                                                                                                                                to: "P-fuji1j2zllfqv4mgg7ytn9m2u2x0q3h3jqkzq8q8q8q8",
                                                                                                                                                                                                                                                                                                                amount: "1000000000000000000", // 1 AVAX in wei
                                                                                                                                                                                                                                                                                                                destinationChain: "X"
                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • Multi-Chain Support: Interact with all Avalanche chains: -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                  • P-Chain (Platform Chain)
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • X-Chain (Exchange Chain)
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • C-Chain (Contract Chain)
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • Wallet Functionality: Complete wallet operations including: -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                  • Transaction signing and sending
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Message signing
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Account management
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Chain-specific transaction preparation
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • API Clients: -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                  • Admin API
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Info API
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Health API
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Index API
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • TypeScript Support: Full TypeScript support with type definitions
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • Modular Design: Access specific functionality through dedicated clients
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • P-Chain Client: Platform Chain operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • X-Chain Client: Exchange Chain operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • C-Chain Client: Contract Chain operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • Admin Client: Administrative operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • Info Client: Network information
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • Health Client: Health check endpoints
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • Index Clients: -
                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                  • Index P-Chain Block
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Index C-Chain Block
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Index X-Chain Block
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  • Index X-Chain Transaction
                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • Avalanche Wallet Client: General wallet operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • P-Chain Wallet Client: P-Chain specific wallet operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • X-Chain Wallet Client: X-Chain specific wallet operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • C-Chain Wallet Client: C-Chain specific wallet operations
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                The SDK can be configured with various options:

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                chain: avalanche, // Chain configuration
                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                type: "<transportType>", // Transport type
                                                                                                                                                                                                                                                                                                                url: "<url>",
                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                apiKey: "", // Optional API key
                                                                                                                                                                                                                                                                                                                rlToken: "", // Optional rate limit token
                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                The SDK exports all viem utilities and types, plus Avalanche-specific functionality:

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                import { 
                                                                                                                                                                                                                                                                                                                createAvalancheClient,
                                                                                                                                                                                                                                                                                                                createAvalancheWalletClient,
                                                                                                                                                                                                                                                                                                                // All viem exports
                                                                                                                                                                                                                                                                                                                createClient,
                                                                                                                                                                                                                                                                                                                createPublicClient,
                                                                                                                                                                                                                                                                                                                createWalletClient,
                                                                                                                                                                                                                                                                                                                // ... and many more
                                                                                                                                                                                                                                                                                                                } from '@avalanche-sdk/client' -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                import { 
                                                                                                                                                                                                                                                                                                                privateKeyToAvalancheAccount,
                                                                                                                                                                                                                                                                                                                memonicsToAvalancheAccount,
                                                                                                                                                                                                                                                                                                                hdKeyToAvalancheAccount,
                                                                                                                                                                                                                                                                                                                privateKeyToXPAddress,
                                                                                                                                                                                                                                                                                                                publicKeyToXPAddress,
                                                                                                                                                                                                                                                                                                                // ... and more
                                                                                                                                                                                                                                                                                                                } from '@avalanche-sdk/client/accounts' -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                import { 
                                                                                                                                                                                                                                                                                                                avalanche,
                                                                                                                                                                                                                                                                                                                avalancheFuji,
                                                                                                                                                                                                                                                                                                                // ... and more
                                                                                                                                                                                                                                                                                                                } from '@avalanche-sdk/client/chains' -
                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                Access specific method categories:

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                // P-Chain methods
                                                                                                                                                                                                                                                                                                                import { /* P-Chain methods */ } from '@avalanche-sdk/client/methods/pChain'

                                                                                                                                                                                                                                                                                                                // X-Chain methods
                                                                                                                                                                                                                                                                                                                import { /* X-Chain methods */ } from '@avalanche-sdk/client/methods/xChain'

                                                                                                                                                                                                                                                                                                                // C-Chain methods
                                                                                                                                                                                                                                                                                                                import { /* C-Chain methods */ } from '@avalanche-sdk/client/methods/cChain'

                                                                                                                                                                                                                                                                                                                // Wallet methods
                                                                                                                                                                                                                                                                                                                import { /* Wallet methods */ } from '@avalanche-sdk/client/methods/wallet'

                                                                                                                                                                                                                                                                                                                // Public methods
                                                                                                                                                                                                                                                                                                                import { /* Public methods */ } from '@avalanche-sdk/client/methods/public'

                                                                                                                                                                                                                                                                                                                // Admin methods
                                                                                                                                                                                                                                                                                                                import { /* Admin methods */ } from '@avalanche-sdk/client/methods/admin'

                                                                                                                                                                                                                                                                                                                // Info methods
                                                                                                                                                                                                                                                                                                                import { /* Info methods */ } from '@avalanche-sdk/client/methods/info'

                                                                                                                                                                                                                                                                                                                // Health methods
                                                                                                                                                                                                                                                                                                                import { /* Health methods */ } from '@avalanche-sdk/client/methods/health'

                                                                                                                                                                                                                                                                                                                // Index methods
                                                                                                                                                                                                                                                                                                                import { /* Index methods */ } from '@avalanche-sdk/client/methods/index' -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                import { 
                                                                                                                                                                                                                                                                                                                CB58ToHex,
                                                                                                                                                                                                                                                                                                                hexToCB58,
                                                                                                                                                                                                                                                                                                                getTxFromBytes,
                                                                                                                                                                                                                                                                                                                getUnsignedTxFromBytes,
                                                                                                                                                                                                                                                                                                                getUtxoFromBytes,
                                                                                                                                                                                                                                                                                                                getUtxosForAddress,
                                                                                                                                                                                                                                                                                                                // All viem utilities
                                                                                                                                                                                                                                                                                                                formatEther,
                                                                                                                                                                                                                                                                                                                parseEther,
                                                                                                                                                                                                                                                                                                                keccak256,
                                                                                                                                                                                                                                                                                                                // ... and many more
                                                                                                                                                                                                                                                                                                                } from '@avalanche-sdk/client/utils' -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                // Node utilities
                                                                                                                                                                                                                                                                                                                import { /* Node utilities */ } from '@avalanche-sdk/client/node'

                                                                                                                                                                                                                                                                                                                // Nonce management
                                                                                                                                                                                                                                                                                                                import { /* Nonce utilities */ } from '@avalanche-sdk/client/nonce'

                                                                                                                                                                                                                                                                                                                // Serializable utilities
                                                                                                                                                                                                                                                                                                                import { /* Serializable utilities */ } from '@avalanche-sdk/client/serializable'

                                                                                                                                                                                                                                                                                                                // SIWE (Sign-In with Ethereum)
                                                                                                                                                                                                                                                                                                                import { /* SIWE utilities */ } from '@avalanche-sdk/client/siwe'

                                                                                                                                                                                                                                                                                                                // Window utilities
                                                                                                                                                                                                                                                                                                                import { /* Window utilities */ } from '@avalanche-sdk/client/window' -
                                                                                                                                                                                                                                                                                                                - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • acps - Returns peer preferences for Avalanche Community Proposals (ACPs). Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getBlockchainID - Given a blockchain's alias, get its ID. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getNetworkID - Get the ID of the network this node is participating in. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getNetworkName - Get the name of the network this node is participating in. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getNodeID - Get the ID, the BLS key, and the proof of possession of this node. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getNodeIP - Get the IP of this node. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getNodeVersion - Get the version of this node. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getTxFee - Get the transaction fee for the specified transaction type. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • getVMs - Get the virtual machines supported by this node. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • isBootstrapped - Check whether a given chain is done bootstrapping. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • peers - Get a description of peer connections. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • uptime - Returns the network's observed uptime of this node. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • upgrades - Returns the upgrade history and configuration of the network. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • health - Returns the last set of health check results. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • liveness - Returns healthy once the endpoint is available. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                • readiness - Returns healthy once the node has finished initializing. Docs
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                Check out the examples folder for comprehensive usage examples:

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                • sendAvax.ts - Basic example of sending AVAX using the SDK
                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                The prepare-primary-network-txns folder contains examples for preparing various types of transactions:

                                                                                                                                                                                                                                                                                                                - - - - -

                                                                                                                                                                                                                                                                                                                For more detailed information about each example, see the examples README.

                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

                                                                                                                                                                                                                                                                                                                -

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

                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                If you encounter any issues or have questions, please:

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                1. Check the documentation
                                                                                                                                                                                                                                                                                                                2. -
                                                                                                                                                                                                                                                                                                                3. Open an issue
                                                                                                                                                                                                                                                                                                                4. -
                                                                                                                                                                                                                                                                                                                5. Join our community channels for help
                                                                                                                                                                                                                                                                                                                6. -
                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/media/LICENSE b/client/docs/media/LICENSE deleted file mode 100644 index 97e8d4f3..00000000 --- a/client/docs/media/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2025, Ava Labs, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file diff --git a/client/docs/modules.html b/client/docs/modules.html deleted file mode 100644 index 5cfd24cb..00000000 --- a/client/docs/modules.html +++ /dev/null @@ -1 +0,0 @@ -Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                  Preparing search index...
                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/modules/accounts.html b/client/docs/modules/accounts.html deleted file mode 100644 index 44b7c370..00000000 --- a/client/docs/modules/accounts.html +++ /dev/null @@ -1,21 +0,0 @@ -accounts | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                    Module accounts

                                                                                                                                                                                                                                                                                                                    Type Aliases

                                                                                                                                                                                                                                                                                                                    AvalancheAccount

                                                                                                                                                                                                                                                                                                                    AvalancheAccount is a type that represents an account on the Avalanche network. -It can be a combination of an EVM account and an XP account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    HDKeyToAvalancheAccountOptions

                                                                                                                                                                                                                                                                                                                    Options for the hdKeyToAvalancheAccount function.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    LocalXPAccount

                                                                                                                                                                                                                                                                                                                    LocalXPAccount is a type that represents an X or P chain account. -It is a local account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    XPAccount

                                                                                                                                                                                                                                                                                                                    XPAccount is a type that represents an X or P chain account. -It can be a local account or a remote account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    XPAddress

                                                                                                                                                                                                                                                                                                                    XPAddress is a type that represents an X or P chain address.

                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    Functions

                                                                                                                                                                                                                                                                                                                    hdKeyToAvalancheAccount

                                                                                                                                                                                                                                                                                                                    Converts a HD key to an Avalanche account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    memonicsToAvalancheAccount

                                                                                                                                                                                                                                                                                                                    Converts a mnemonic to an Avalanche account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    parseAvalancheAccount

                                                                                                                                                                                                                                                                                                                    Parse an account or address to an AvalancheAccount

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    privateKeyToAvalancheAccount

                                                                                                                                                                                                                                                                                                                    Converts a private key to an Avalanche account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    privateKeyToXPAccount

                                                                                                                                                                                                                                                                                                                    Converts a private key to an XP account.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    privateKeyToXPAddress

                                                                                                                                                                                                                                                                                                                    Converts a private key to an XP address.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    privateKeyToXPPublicKey

                                                                                                                                                                                                                                                                                                                    Converts a private key to an XP public key.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    publicKeyToXPAddress

                                                                                                                                                                                                                                                                                                                    Converts a public key to an XP address.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    xpRecoverPublicKey

                                                                                                                                                                                                                                                                                                                    Recovers a public key from a signature and message.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    xpSignMessage

                                                                                                                                                                                                                                                                                                                    Signs a message with an XP private key.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    xpSignTransaction

                                                                                                                                                                                                                                                                                                                    Signs a transaction hash with an XP private key.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    xpVerifySignature

                                                                                                                                                                                                                                                                                                                    Verifies a signature.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/modules/chains.html b/client/docs/modules/chains.html deleted file mode 100644 index 153b7736..00000000 --- a/client/docs/modules/chains.html +++ /dev/null @@ -1 +0,0 @@ -chains | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                      Module chains

                                                                                                                                                                                                                                                                                                                      Variables

                                                                                                                                                                                                                                                                                                                      avalanche
                                                                                                                                                                                                                                                                                                                      avalancheFuji
                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/modules/index.html b/client/docs/modules/index.html deleted file mode 100644 index 45fa209b..00000000 --- a/client/docs/modules/index.html +++ /dev/null @@ -1,20 +0,0 @@ -index | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                        Module index

                                                                                                                                                                                                                                                                                                                        Type Aliases

                                                                                                                                                                                                                                                                                                                        AdminAPIActions
                                                                                                                                                                                                                                                                                                                        AdminApiClient
                                                                                                                                                                                                                                                                                                                        AdminApiClientConfig
                                                                                                                                                                                                                                                                                                                        AdminRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the Admin methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        AvalancheBaseClient
                                                                                                                                                                                                                                                                                                                        AvalancheBaseClientConfig
                                                                                                                                                                                                                                                                                                                        AvalancheClient
                                                                                                                                                                                                                                                                                                                        AvalancheClientConfig
                                                                                                                                                                                                                                                                                                                        AvalancheCoreClient
                                                                                                                                                                                                                                                                                                                        AvalancheCoreClientConfig
                                                                                                                                                                                                                                                                                                                        AvalanchePublicActions
                                                                                                                                                                                                                                                                                                                        AvalanchePublicRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the Avalanche Public methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        AvalancheTransportConfig
                                                                                                                                                                                                                                                                                                                        AvalancheWalletActions
                                                                                                                                                                                                                                                                                                                        AvalancheWalletClient
                                                                                                                                                                                                                                                                                                                        AvalancheWalletClientConfig
                                                                                                                                                                                                                                                                                                                        AvalancheWalletCoreClient
                                                                                                                                                                                                                                                                                                                        AvalancheWalletCoreClientConfig
                                                                                                                                                                                                                                                                                                                        AvalancheWalletRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the Avalanche Wallet methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        CChainActions
                                                                                                                                                                                                                                                                                                                        CChainClient
                                                                                                                                                                                                                                                                                                                        CChainClientConfig
                                                                                                                                                                                                                                                                                                                        CChainRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the C-Chain methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        CChainWalletActions
                                                                                                                                                                                                                                                                                                                        CreateAdminApiClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateAvalancheBaseClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateAvalancheClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateAvalancheWalletClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateAvalancheWalletCoreClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateCChainClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateHealthApiClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateIndexApiClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateInfoApiClientErrorType
                                                                                                                                                                                                                                                                                                                        CreatePChainClientErrorType
                                                                                                                                                                                                                                                                                                                        CreateXChainClientErrorType
                                                                                                                                                                                                                                                                                                                        Erc20Actions
                                                                                                                                                                                                                                                                                                                        HealthAPIActions
                                                                                                                                                                                                                                                                                                                        HealthApiClient
                                                                                                                                                                                                                                                                                                                        HealthApiClientConfig
                                                                                                                                                                                                                                                                                                                        HealthRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the Health methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        IndexAPIActions
                                                                                                                                                                                                                                                                                                                        IndexApiClient
                                                                                                                                                                                                                                                                                                                        IndexApiClientConfig
                                                                                                                                                                                                                                                                                                                        IndexRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the Index methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        InfoAPIActions
                                                                                                                                                                                                                                                                                                                        InfoApiClient
                                                                                                                                                                                                                                                                                                                        InfoApiClientConfig
                                                                                                                                                                                                                                                                                                                        InfoRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the Info methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        PChainActions
                                                                                                                                                                                                                                                                                                                        PChainClient
                                                                                                                                                                                                                                                                                                                        PChainClientConfig
                                                                                                                                                                                                                                                                                                                        PChainRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the P-Chain methods.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        XChainActions
                                                                                                                                                                                                                                                                                                                        XChainClient
                                                                                                                                                                                                                                                                                                                        XChainClientConfig
                                                                                                                                                                                                                                                                                                                        XChainRpcSchema

                                                                                                                                                                                                                                                                                                                        The RPC schema for the X-Chain methods.

                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        Functions

                                                                                                                                                                                                                                                                                                                        adminAPIActions
                                                                                                                                                                                                                                                                                                                        avalanchePublicActions
                                                                                                                                                                                                                                                                                                                        avalancheWalletActions
                                                                                                                                                                                                                                                                                                                        cChainActions
                                                                                                                                                                                                                                                                                                                        cChainWalletActions
                                                                                                                                                                                                                                                                                                                        createAdminApiClient

                                                                                                                                                                                                                                                                                                                        Creates an Admin API Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createAvalancheBaseClient
                                                                                                                                                                                                                                                                                                                        createAvalancheClient

                                                                                                                                                                                                                                                                                                                        Creates an Avalanche Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createAvalancheCoreClient

                                                                                                                                                                                                                                                                                                                        Creates an Avalanche Core Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createAvalancheTransportClient
                                                                                                                                                                                                                                                                                                                        createAvalancheWalletClient

                                                                                                                                                                                                                                                                                                                        Creates an Avalanche Wallet Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createAvalancheWalletCoreClient
                                                                                                                                                                                                                                                                                                                        createCChainClient

                                                                                                                                                                                                                                                                                                                        Creates a C-Chain (Contract Chain) Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createHealthApiClient

                                                                                                                                                                                                                                                                                                                        Creates a Health API Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createIndexApiClient

                                                                                                                                                                                                                                                                                                                        Creates an Index API Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createInfoApiClient

                                                                                                                                                                                                                                                                                                                        Creates an Info API Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createPChainClient

                                                                                                                                                                                                                                                                                                                        Creates a P-Chain (Platform Chain) Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        createXChainClient

                                                                                                                                                                                                                                                                                                                        Creates an X-Chain (Exchange Chain) Client with a given transport configured for a Chain.

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        erc20Actions
                                                                                                                                                                                                                                                                                                                        healthAPIActions
                                                                                                                                                                                                                                                                                                                        indexAPIActions
                                                                                                                                                                                                                                                                                                                        infoAPIActions
                                                                                                                                                                                                                                                                                                                        pChainActions
                                                                                                                                                                                                                                                                                                                        xChainActions
                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/modules/methods.html b/client/docs/modules/methods.html deleted file mode 100644 index 12c560ef..00000000 --- a/client/docs/modules/methods.html +++ /dev/null @@ -1 +0,0 @@ -methods | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                          Preparing search index...
                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/modules/methods_admin.html b/client/docs/modules/methods_admin.html deleted file mode 100644 index b0efbfc9..00000000 --- a/client/docs/modules/methods_admin.html +++ /dev/null @@ -1,22 +0,0 @@ -methods/admin | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                            Module methods/admin

                                                                                                                                                                                                                                                                                                                            Type Aliases

                                                                                                                                                                                                                                                                                                                            AliasChainErrorType
                                                                                                                                                                                                                                                                                                                            AliasChainParameters

                                                                                                                                                                                                                                                                                                                            Parameters for the admin.aliasChain method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            AliasErrorType
                                                                                                                                                                                                                                                                                                                            AliasParameters

                                                                                                                                                                                                                                                                                                                            Parameters for the admin.alias method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            GetChainAliasesErrorType
                                                                                                                                                                                                                                                                                                                            GetChainAliasesParameters

                                                                                                                                                                                                                                                                                                                            Parameters for the admin.getChainAliases method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            GetChainAliasesReturnType

                                                                                                                                                                                                                                                                                                                            Return type for the admin.getChainAliases method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            GetLoggerLevelErrorType
                                                                                                                                                                                                                                                                                                                            GetLoggerLevelParameters

                                                                                                                                                                                                                                                                                                                            Parameters for the admin.getLoggerLevel method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            GetLoggerLevelReturnType

                                                                                                                                                                                                                                                                                                                            Return type for the admin.getLoggerLevel method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            LoadVMsErrorType
                                                                                                                                                                                                                                                                                                                            LoadVMsReturnType

                                                                                                                                                                                                                                                                                                                            Return type for the admin.loadVMs method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            LockProfileErrorType
                                                                                                                                                                                                                                                                                                                            MemoryProfileErrorType
                                                                                                                                                                                                                                                                                                                            SetLoggerLevelParameters

                                                                                                                                                                                                                                                                                                                            Parameters for the admin.setLoggerLevel method.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            StartCPUProfilerErrorType
                                                                                                                                                                                                                                                                                                                            StopCPUProfilerErrorType

                                                                                                                                                                                                                                                                                                                            Functions

                                                                                                                                                                                                                                                                                                                            alias

                                                                                                                                                                                                                                                                                                                            Assign an API endpoint an alias, a different endpoint for the API. -The original endpoint will still work. This change only affects this node.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            aliasChain

                                                                                                                                                                                                                                                                                                                            Give a blockchain an alias, a different name that can be used any place the blockchain's ID is used. -Note: The alias is set for each chain on each node individually.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            getChainAliases

                                                                                                                                                                                                                                                                                                                            Returns the aliases of the chain.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            getLoggerLevel

                                                                                                                                                                                                                                                                                                                            Returns log and display levels of loggers.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            loadVMs

                                                                                                                                                                                                                                                                                                                            Dynamically loads any virtual machines installed on the node as plugins.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            lockProfile

                                                                                                                                                                                                                                                                                                                            Writes a profile of mutex statistics to lock.profile.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            memoryProfile

                                                                                                                                                                                                                                                                                                                            Writes a memory profile of the node to mem.profile.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            setLoggerLevel

                                                                                                                                                                                                                                                                                                                            Sets log and display levels of loggers.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            startCPUProfiler

                                                                                                                                                                                                                                                                                                                            Start profiling the CPU utilization of the node. -To stop, call stopCPUProfiler. On stop, writes the profile to cpu.profile.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            stopCPUProfiler

                                                                                                                                                                                                                                                                                                                            Stop the CPU profile that was previously started.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/modules/methods_cChain.html b/client/docs/modules/methods_cChain.html deleted file mode 100644 index 97dc5b1a..00000000 --- a/client/docs/modules/methods_cChain.html +++ /dev/null @@ -1,14 +0,0 @@ -methods/cChain | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                              Module methods/cChain

                                                                                                                                                                                                                                                                                                                              Type Aliases

                                                                                                                                                                                                                                                                                                                              CChainAtomicTxStatus

                                                                                                                                                                                                                                                                                                                              The status of an atomic transaction

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              GetAtomicTxErrorType
                                                                                                                                                                                                                                                                                                                              GetAtomicTxParameters

                                                                                                                                                                                                                                                                                                                              The parameters for the avax.getAtomicTx method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              GetAtomicTxReturnType

                                                                                                                                                                                                                                                                                                                              The return type for the avax.getAtomicTx method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              GetAtomicTxStatusErrorType
                                                                                                                                                                                                                                                                                                                              GetAtomicTxStatusParameters

                                                                                                                                                                                                                                                                                                                              The parameters for the avax.getAtomicTxStatus method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              GetAtomicTxStatusReturnType

                                                                                                                                                                                                                                                                                                                              The return type for the avax.getAtomicTxStatus method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              GetUTXOsErrorType
                                                                                                                                                                                                                                                                                                                              GetUTXOsParameters

                                                                                                                                                                                                                                                                                                                              The parameters for the avax.getUTXOs method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                                              The return type for the avax.getUTXOs method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              IssueTxErrorType
                                                                                                                                                                                                                                                                                                                              IssueTxParameters

                                                                                                                                                                                                                                                                                                                              The parameters for the platform.issueTx method.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              IssueTxReturnType

                                                                                                                                                                                                                                                                                                                              The return type for the platform.issueTx method.

                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                              Functions

                                                                                                                                                                                                                                                                                                                              getAtomicTx

                                                                                                                                                                                                                                                                                                                              Get the atomic transaction by its ID.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              getAtomicTxStatus

                                                                                                                                                                                                                                                                                                                              Get the status of an atomic transaction.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              getUTXOs

                                                                                                                                                                                                                                                                                                                              Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              issueTx

                                                                                                                                                                                                                                                                                                                              Issue a transaction to the C-Chain.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/modules/methods_health.html b/client/docs/modules/methods_health.html deleted file mode 100644 index f9073e63..00000000 --- a/client/docs/modules/methods_health.html +++ /dev/null @@ -1,12 +0,0 @@ -methods/health | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                Module methods/health

                                                                                                                                                                                                                                                                                                                                Type Aliases

                                                                                                                                                                                                                                                                                                                                HealthErrorType
                                                                                                                                                                                                                                                                                                                                HealthParameters

                                                                                                                                                                                                                                                                                                                                Parameters for the health.health method.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                HealthReturnType

                                                                                                                                                                                                                                                                                                                                Return type for the health.health method.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                LivenessErrorType
                                                                                                                                                                                                                                                                                                                                LivenessReturnType

                                                                                                                                                                                                                                                                                                                                Return type for the health.liveness method.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                ReadinessErrorType
                                                                                                                                                                                                                                                                                                                                ReadinessParameters

                                                                                                                                                                                                                                                                                                                                Parameters for the health.readiness method.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                ReadinessReturnType

                                                                                                                                                                                                                                                                                                                                Return type for the health.readiness method.

                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                Functions

                                                                                                                                                                                                                                                                                                                                health

                                                                                                                                                                                                                                                                                                                                Returns the last set of health check results for the node. -This includes checks for all chains, network, database, and other components.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                liveness

                                                                                                                                                                                                                                                                                                                                Returns a simple health check indicating if the node is alive and can handle requests. -This is a lightweight check that always returns healthy if the endpoint is available.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                readiness

                                                                                                                                                                                                                                                                                                                                Returns the last evaluation of the startup health check results. -This indicates if the node has finished initializing and is ready to handle requests.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/modules/methods_index.html b/client/docs/modules/methods_index.html deleted file mode 100644 index 06015355..00000000 --- a/client/docs/modules/methods_index.html +++ /dev/null @@ -1,19 +0,0 @@ -methods/index | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                  Module methods/index

                                                                                                                                                                                                                                                                                                                                  Type Aliases

                                                                                                                                                                                                                                                                                                                                  GetContainerByIDErrorType
                                                                                                                                                                                                                                                                                                                                  GetContainerByIDParameters

                                                                                                                                                                                                                                                                                                                                  Parameters for the index.getContainerByID method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetContainerByIDReturnType

                                                                                                                                                                                                                                                                                                                                  Return type for the index.getContainerByID method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetContainerByIndexErrorType
                                                                                                                                                                                                                                                                                                                                  GetContainerByIndexParameters

                                                                                                                                                                                                                                                                                                                                  Parameters for the index.getContainerByIndex method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetContainerByIndexReturnType

                                                                                                                                                                                                                                                                                                                                  Return type for the index.getContainerByIndex method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetContainerRangeErrorType
                                                                                                                                                                                                                                                                                                                                  GetContainerRangeParameters

                                                                                                                                                                                                                                                                                                                                  Parameters for the index.getContainerRange method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetContainerRangeReturnType

                                                                                                                                                                                                                                                                                                                                  Return type for the index.getContainerRange method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetIndexErrorType
                                                                                                                                                                                                                                                                                                                                  GetIndexParameters

                                                                                                                                                                                                                                                                                                                                  Parameters for the index.getIndex method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetIndexReturnType

                                                                                                                                                                                                                                                                                                                                  Return type for the index.getIndex method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetLastAcceptedErrorType
                                                                                                                                                                                                                                                                                                                                  GetLastAcceptedParameters

                                                                                                                                                                                                                                                                                                                                  Parameters for the index.getLastAccepted method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  GetLastAcceptedReturnType

                                                                                                                                                                                                                                                                                                                                  Return type for the index.getLastAccepted method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  IsAcceptedErrorType
                                                                                                                                                                                                                                                                                                                                  IsAcceptedParameters

                                                                                                                                                                                                                                                                                                                                  Parameters for the index.isAccepted method.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  IsAcceptedReturnType

                                                                                                                                                                                                                                                                                                                                  Return type for the index.isAccepted method.

                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  Functions

                                                                                                                                                                                                                                                                                                                                  getContainerByID

                                                                                                                                                                                                                                                                                                                                  Get container by ID.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  getContainerByIndex

                                                                                                                                                                                                                                                                                                                                  Get container by index.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  getContainerRange

                                                                                                                                                                                                                                                                                                                                  Get a range of containers by their indices.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  getIndex

                                                                                                                                                                                                                                                                                                                                  Get the index of a container by its ID.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  getLastAccepted

                                                                                                                                                                                                                                                                                                                                  Get the last accepted container.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  isAccepted

                                                                                                                                                                                                                                                                                                                                  Check if a container is accepted.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/modules/methods_info.html b/client/docs/modules/methods_info.html deleted file mode 100644 index f64763c0..00000000 --- a/client/docs/modules/methods_info.html +++ /dev/null @@ -1,33 +0,0 @@ -methods/info | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                    Module methods/info

                                                                                                                                                                                                                                                                                                                                    Type Aliases

                                                                                                                                                                                                                                                                                                                                    AcpsErrorType
                                                                                                                                                                                                                                                                                                                                    AcpsReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.acps method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetBlockchainIDErrorType
                                                                                                                                                                                                                                                                                                                                    GetBlockchainIDParameters

                                                                                                                                                                                                                                                                                                                                    Parameters for the info.getBlockchainID method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetBlockchainIDReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getBlockchainID method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetNetworkIDErrorType
                                                                                                                                                                                                                                                                                                                                    GetNetworkIDReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getNetworkID method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetNetworkNameErrorType
                                                                                                                                                                                                                                                                                                                                    GetNetworkNameReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getNetworkName method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetNodeIDErrorType
                                                                                                                                                                                                                                                                                                                                    GetNodeIDReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getNodeID method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetNodeIPErrorType
                                                                                                                                                                                                                                                                                                                                    GetNodeIPReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getNodeIP method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetNodeVersionErrorType
                                                                                                                                                                                                                                                                                                                                    GetNodeVersionReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getNodeVersion method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetTxFeeErrorType
                                                                                                                                                                                                                                                                                                                                    GetTxFeeReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getTxFee method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    GetVMsErrorType
                                                                                                                                                                                                                                                                                                                                    GetVMsReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.getVMs method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    IsBootstrappedErrorType
                                                                                                                                                                                                                                                                                                                                    IsBootstrappedParameters

                                                                                                                                                                                                                                                                                                                                    Parameters for the info.isBootstrapped method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    IsBootstrappedReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.isBootstrapped method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    PeersErrorType
                                                                                                                                                                                                                                                                                                                                    PeersParameters

                                                                                                                                                                                                                                                                                                                                    Parameters for the info.peers method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    PeersReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.peers method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    UpgradesErrorType
                                                                                                                                                                                                                                                                                                                                    UpgradesReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.upgrades method.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    UptimeErrorType
                                                                                                                                                                                                                                                                                                                                    UptimeReturnType

                                                                                                                                                                                                                                                                                                                                    Return type for the info.uptime method.

                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                    Functions

                                                                                                                                                                                                                                                                                                                                    acps

                                                                                                                                                                                                                                                                                                                                    Returns peer preferences for Avalanche Community Proposals (ACPs).

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getBlockchainID

                                                                                                                                                                                                                                                                                                                                    Given a blockchain's alias, get its ID.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getNetworkID

                                                                                                                                                                                                                                                                                                                                    Get the ID of the network this node is participating in. -Network ID of 1 = Mainnet, Network ID of 5 = Fuji (testnet).

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getNetworkName

                                                                                                                                                                                                                                                                                                                                    Get the name of the network this node is participating in.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getNodeID

                                                                                                                                                                                                                                                                                                                                    Get the ID, the BLS key, and the proof of possession of this node. -Note: This endpoint is only available on specific nodes, not on public servers.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getNodeIP

                                                                                                                                                                                                                                                                                                                                    Get the IP address of this node.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getNodeVersion

                                                                                                                                                                                                                                                                                                                                    Get the version of this node.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getTxFee

                                                                                                                                                                                                                                                                                                                                    Get the transaction fee for this node.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    getVMs

                                                                                                                                                                                                                                                                                                                                    Get the virtual machines (VMs) this node is running.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    isBootstrapped

                                                                                                                                                                                                                                                                                                                                    Check whether a given chain is done bootstrapping.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    peers

                                                                                                                                                                                                                                                                                                                                    Get a description of peer connections.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    upgrades

                                                                                                                                                                                                                                                                                                                                    Returns the upgrade history and configuration of the network.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    uptime

                                                                                                                                                                                                                                                                                                                                    Returns the network's observed uptime of this node. -This is the only reliable source of data for your node's uptime.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/modules/methods_pChain.html b/client/docs/modules/methods_pChain.html deleted file mode 100644 index 6dad199d..00000000 --- a/client/docs/modules/methods_pChain.html +++ /dev/null @@ -1,110 +0,0 @@ -methods/pChain | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                      Module methods/pChain

                                                                                                                                                                                                                                                                                                                                      Type Aliases

                                                                                                                                                                                                                                                                                                                                      BlockchainStatus

                                                                                                                                                                                                                                                                                                                                      Describes the status of a blockchain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      Encoding
                                                                                                                                                                                                                                                                                                                                      GetBalanceErrorType
                                                                                                                                                                                                                                                                                                                                      GetBalanceParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getBalance method. -Get the balance of AVAX controlled by a given address.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBalanceReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getBalance method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockByHeightErrorType
                                                                                                                                                                                                                                                                                                                                      GetBlockByHeightParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getBlockByHeight method. -Get a block by its height.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockByHeightReturnType

                                                                                                                                                                                                                                                                                                                                      The return type for the platform.getBlockByHeight method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockchainsErrorType
                                                                                                                                                                                                                                                                                                                                      GetBlockchainsReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getBlockchains method. -Get all the blockchains that exist (excluding the P-Chain).

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockchainStatusErrorType
                                                                                                                                                                                                                                                                                                                                      GetBlockchainStatusParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getBlockchainStatus method. -Get the status of a blockchain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockchainStatusReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getBlockchainStatus method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockErrorType
                                                                                                                                                                                                                                                                                                                                      GetBlockParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getBlock method. -Get a block by its ID.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetBlockReturnType

                                                                                                                                                                                                                                                                                                                                      The return type for the platform.getBlock method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetCurrentSupplyErrorType
                                                                                                                                                                                                                                                                                                                                      GetCurrentSupplyParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getCurrentSupply method. -Get the current supply of a token.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetCurrentSupplyReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getCurrentSupply method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetCurrentValidatorsErrorType
                                                                                                                                                                                                                                                                                                                                      GetCurrentValidatorsParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getCurrentValidators method. -Get the current validators of a Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetCurrentValidatorsReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getCurrentValidators method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetFeeConfigErrorType
                                                                                                                                                                                                                                                                                                                                      GetFeeConfigReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getFeeConfig method. -Get the fee configuration for the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetFeeStateErrorType
                                                                                                                                                                                                                                                                                                                                      GetFeeStateReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getFeeState method. -Get the current fee state of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetHeightErrorType
                                                                                                                                                                                                                                                                                                                                      GetHeightReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getHeight method. -Get the current height of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetL1ValidatorErrorType
                                                                                                                                                                                                                                                                                                                                      GetL1ValidatorParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getL1Validator method. -Get information about an L1 validator.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetL1ValidatorReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getL1Validator method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetMinStakeErrorType
                                                                                                                                                                                                                                                                                                                                      GetMinStakeParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getMinStake method. -Get the minimum stake required for validators and delegators.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetMinStakeReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getMinStake method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetProposedHeightErrorType
                                                                                                                                                                                                                                                                                                                                      GetProposedHeightReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getProposedHeight method. -Get the proposed height of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetRewardUTXOsErrorType
                                                                                                                                                                                                                                                                                                                                      GetRewardUTXOsParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getRewardUTXOs method. -Get the reward UTXOs for a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetRewardUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getRewardUTXOs method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetStakeErrorType
                                                                                                                                                                                                                                                                                                                                      GetStakeParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getStake method. -Get the amount of stake for a set of addresses.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetStakeReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getStake method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetStakingAssetIDErrorType
                                                                                                                                                                                                                                                                                                                                      GetStakingAssetIDParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getStakingAssetID method. -Get the ID of the asset used for staking on a Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetStakingAssetIDReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getStakingAssetID method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetSubnetErrorType
                                                                                                                                                                                                                                                                                                                                      GetSubnetParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getSubnet method. -Get information about a Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetSubnetReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getSubnet method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetSubnetsErrorType
                                                                                                                                                                                                                                                                                                                                      GetSubnetsParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getSubnets method. -Get information about a set of Subnets.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetSubnetsReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getSubnets method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTimestampErrorType
                                                                                                                                                                                                                                                                                                                                      GetTimestampReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getTimestamp method. -Get the current timestamp of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTotalStakeErrorType
                                                                                                                                                                                                                                                                                                                                      GetTotalStakeParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getTotalStake method. -Get the total amount of stake on a Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTotalStakeReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getTotalStake method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTxErrorType
                                                                                                                                                                                                                                                                                                                                      GetTxParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getTx method. -Get a transaction by its ID.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTxReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getTx method. -Returns the transaction encoded to the specified format PChainTransactionType

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTxStatusErrorType
                                                                                                                                                                                                                                                                                                                                      GetTxStatusParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getTxStatus method. -Get the status of a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetTxStatusReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getTxStatus method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetUTXOsErrorType
                                                                                                                                                                                                                                                                                                                                      GetUTXOsParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getUTXOs method. -Get the UTXOs that reference a given set of addresses.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetValidatorsAtErrorType
                                                                                                                                                                                                                                                                                                                                      GetValidatorsAtParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getValidatorsAt method. -Get the validators at a given height.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      GetValidatorsAtReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getValidatorsAt method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      IssueTxErrorType
                                                                                                                                                                                                                                                                                                                                      IssueTxParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.issueTx method. -Issue a transaction to the Platform Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      IssueTxReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.issueTx method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      PChainBlockType
                                                                                                                                                                                                                                                                                                                                      PChainTransactionStatus

                                                                                                                                                                                                                                                                                                                                      Represents the status of a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      PChainTransactionType
                                                                                                                                                                                                                                                                                                                                      SampleValidatorsErrorType
                                                                                                                                                                                                                                                                                                                                      SampleValidatorsParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.sampleValidators method. -Sample validators from the specified Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      SampleValidatorsReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.sampleValidators method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      ValidatedByErrorType
                                                                                                                                                                                                                                                                                                                                      ValidatedByParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.validatedBy method. -Get the Subnet that validates a given blockchain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      ValidatedByReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.validatedBy method.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      ValidatesErrorType
                                                                                                                                                                                                                                                                                                                                      ValidatesParameters

                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.validates method. -Get the IDs of the blockchains a Subnet validates.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      ValidatesReturnType

                                                                                                                                                                                                                                                                                                                                      Return type for the platform.validates method.

                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      Functions

                                                                                                                                                                                                                                                                                                                                      getBalance

                                                                                                                                                                                                                                                                                                                                      Get the balance of AVAX controlled by a given address.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getBlock

                                                                                                                                                                                                                                                                                                                                      Get a block by its ID.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getBlockByHeight

                                                                                                                                                                                                                                                                                                                                      Get a block by its height.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getBlockchains

                                                                                                                                                                                                                                                                                                                                      Get all the blockchains that exist (excluding the P-Chain).

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getBlockchainStatus

                                                                                                                                                                                                                                                                                                                                      Get the status of a blockchain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getCurrentSupply

                                                                                                                                                                                                                                                                                                                                      Get the current supply of an asset.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getCurrentValidators

                                                                                                                                                                                                                                                                                                                                      Get the current validators of the specified Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getFeeConfig

                                                                                                                                                                                                                                                                                                                                      Get the fee configuration for the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getFeeState

                                                                                                                                                                                                                                                                                                                                      Get the current fee state of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getHeight

                                                                                                                                                                                                                                                                                                                                      Get the height of the last accepted block.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getL1Validator

                                                                                                                                                                                                                                                                                                                                      Get the L1 validator information.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getMinStake

                                                                                                                                                                                                                                                                                                                                      Get the minimum stake amount for a subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getProposedHeight

                                                                                                                                                                                                                                                                                                                                      Get the proposed height of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getRewardUTXOs

                                                                                                                                                                                                                                                                                                                                      Get the reward UTXOs for a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getStake

                                                                                                                                                                                                                                                                                                                                      Get the stake amount for a set of addresses.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getStakingAssetID

                                                                                                                                                                                                                                                                                                                                      Get the staking asset ID for a subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getSubnet

                                                                                                                                                                                                                                                                                                                                      Get information about a subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getSubnets

                                                                                                                                                                                                                                                                                                                                      Get all subnets.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getTimestamp

                                                                                                                                                                                                                                                                                                                                      Get the current timestamp of the P-Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getTotalStake

                                                                                                                                                                                                                                                                                                                                      Get the total stake amount for a subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getTx

                                                                                                                                                                                                                                                                                                                                      Get a transaction by its ID.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getTxStatus

                                                                                                                                                                                                                                                                                                                                      Get the status of a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getUTXOs

                                                                                                                                                                                                                                                                                                                                      Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      getValidatorsAt

                                                                                                                                                                                                                                                                                                                                      Get the validators at a specific height.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      issueTx

                                                                                                                                                                                                                                                                                                                                      Issue a transaction to the Platform Chain.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      sampleValidators

                                                                                                                                                                                                                                                                                                                                      Sample validators from the specified Subnet.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      validatedBy

                                                                                                                                                                                                                                                                                                                                      Get the validators that validated a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      validates

                                                                                                                                                                                                                                                                                                                                      Validates a transaction.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/modules/methods_public.html b/client/docs/modules/methods_public.html deleted file mode 100644 index ac0d6c73..00000000 --- a/client/docs/modules/methods_public.html +++ /dev/null @@ -1,12 +0,0 @@ -methods/public | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                        Module methods/public

                                                                                                                                                                                                                                                                                                                                        Type Aliases

                                                                                                                                                                                                                                                                                                                                        BaseFeeErrorType
                                                                                                                                                                                                                                                                                                                                        BaseFeeMethod
                                                                                                                                                                                                                                                                                                                                        BaseFeeReturnType

                                                                                                                                                                                                                                                                                                                                        The return type for the eth_baseFee method.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        FeeConfigErrorType
                                                                                                                                                                                                                                                                                                                                        FeeConfigMethod
                                                                                                                                                                                                                                                                                                                                        FeeConfigParameters

                                                                                                                                                                                                                                                                                                                                        The parameters for the feeConfig method.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        FeeConfigReturnType

                                                                                                                                                                                                                                                                                                                                        The return type for the feeConfig method.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        GetActiveRulesAtErrorType
                                                                                                                                                                                                                                                                                                                                        GetActiveRulesAtMethod
                                                                                                                                                                                                                                                                                                                                        GetActiveRulesAtParameters

                                                                                                                                                                                                                                                                                                                                        The parameters for the eth_getActiveRulesAt method.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        GetActiveRulesAtReturnType

                                                                                                                                                                                                                                                                                                                                        The return type for the eth_getActiveRulesAt method.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        GetChainConfigErrorType
                                                                                                                                                                                                                                                                                                                                        GetChainConfigMethod
                                                                                                                                                                                                                                                                                                                                        GetChainConfigReturnType
                                                                                                                                                                                                                                                                                                                                        MaxPriorityFeePerGasErrorType
                                                                                                                                                                                                                                                                                                                                        MaxPriorityFeePerGasMethod
                                                                                                                                                                                                                                                                                                                                        MaxPriorityFeePerGasReturnType

                                                                                                                                                                                                                                                                                                                                        The return type for the eth_maxPriorityFeePerGas method.

                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                        Functions

                                                                                                                                                                                                                                                                                                                                        baseFee

                                                                                                                                                                                                                                                                                                                                        Get the base fee for the next block.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        feeConfig

                                                                                                                                                                                                                                                                                                                                        Get the fee config for a specific block.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        getActiveRulesAt

                                                                                                                                                                                                                                                                                                                                        Get the active rules at a specific timestamp.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        getChainConfig

                                                                                                                                                                                                                                                                                                                                        Get the chain configuration for the C-Chain.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        maxPriorityFeePerGas

                                                                                                                                                                                                                                                                                                                                        Get the maximum priority fee per gas for the next block.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/modules/methods_wallet.html b/client/docs/modules/methods_wallet.html deleted file mode 100644 index cbe0c60e..00000000 --- a/client/docs/modules/methods_wallet.html +++ /dev/null @@ -1,16 +0,0 @@ -methods/wallet | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                          Module methods/wallet

                                                                                                                                                                                                                                                                                                                                          Type Aliases

                                                                                                                                                                                                                                                                                                                                          CommonTxParams
                                                                                                                                                                                                                                                                                                                                          FormattedCommonAVMTxParams
                                                                                                                                                                                                                                                                                                                                          FormattedCommonPVMTxParams
                                                                                                                                                                                                                                                                                                                                          FormattedCommonTxParams
                                                                                                                                                                                                                                                                                                                                          GetAccountPubKeyErrorType
                                                                                                                                                                                                                                                                                                                                          GetAccountPubKeyReturnType

                                                                                                                                                                                                                                                                                                                                          The public key of the account

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          Output
                                                                                                                                                                                                                                                                                                                                          SendErrorType
                                                                                                                                                                                                                                                                                                                                          SendParameters

                                                                                                                                                                                                                                                                                                                                          The parameters for the send method.

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          SendReturnType
                                                                                                                                                                                                                                                                                                                                          SendXPTransactionErrorType
                                                                                                                                                                                                                                                                                                                                          SendXPTransactionParameters

                                                                                                                                                                                                                                                                                                                                          The parameters for the sendXPTransaction method

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          SendXPTransactionReturnType

                                                                                                                                                                                                                                                                                                                                          The return type for the sendXPTransaction method

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          Signatures

                                                                                                                                                                                                                                                                                                                                          The signatures for the transaction

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          SignXPMessageErrorType
                                                                                                                                                                                                                                                                                                                                          SignXPMessageParameters

                                                                                                                                                                                                                                                                                                                                          The parameters for the signXPMessage method

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          SignXPMessageReturnType

                                                                                                                                                                                                                                                                                                                                          The return type for the signXPMessage method

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          SignXPTransactionErrorType
                                                                                                                                                                                                                                                                                                                                          SignXPTransactionParameters

                                                                                                                                                                                                                                                                                                                                          The parameters for the signXPTransaction method

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          SignXPTransactionReturnType

                                                                                                                                                                                                                                                                                                                                          The return type for the signXPTransaction method

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          StakeableOutputFull
                                                                                                                                                                                                                                                                                                                                          TransactionDetails

                                                                                                                                                                                                                                                                                                                                          The details of a transaction.

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          TransferableOutputFull
                                                                                                                                                                                                                                                                                                                                          WaitForTxnErrorType
                                                                                                                                                                                                                                                                                                                                          WaitForTxnParameters
                                                                                                                                                                                                                                                                                                                                          AvalancheWalletRpcSchema → AvalancheWalletRpcSchema

                                                                                                                                                                                                                                                                                                                                          Functions

                                                                                                                                                                                                                                                                                                                                          addOrModifyXPAddressAlias
                                                                                                                                                                                                                                                                                                                                          getAccountPubKey

                                                                                                                                                                                                                                                                                                                                          Get the public key of the account

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          send

                                                                                                                                                                                                                                                                                                                                          Sends tokens from the source chain to the destination chain.

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          sendXPTransaction

                                                                                                                                                                                                                                                                                                                                          Send an transaction to the X, P or C chain

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          signXPMessage

                                                                                                                                                                                                                                                                                                                                          Sign a message with the account

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          signXPTransaction

                                                                                                                                                                                                                                                                                                                                          Sign an XP transaction

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          waitForTxn
                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/modules/methods_wallet_cChain.html b/client/docs/modules/methods_wallet_cChain.html deleted file mode 100644 index 638e98ae..00000000 --- a/client/docs/modules/methods_wallet_cChain.html +++ /dev/null @@ -1,3 +0,0 @@ -methods/wallet/cChain | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                            Module methods/wallet/cChain

                                                                                                                                                                                                                                                                                                                                            Type Aliases

                                                                                                                                                                                                                                                                                                                                            PrepareExportTxnParameters
                                                                                                                                                                                                                                                                                                                                            PrepareExportTxnReturnType
                                                                                                                                                                                                                                                                                                                                            PrepareImportTxnParameters
                                                                                                                                                                                                                                                                                                                                            PrepareImportTxnReturnType

                                                                                                                                                                                                                                                                                                                                            Functions

                                                                                                                                                                                                                                                                                                                                            prepareExportTxn

                                                                                                                                                                                                                                                                                                                                            Prepares an export transaction for the C-chain.

                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            prepareImportTxn

                                                                                                                                                                                                                                                                                                                                            Prepares an import transaction for the C-chain.

                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/modules/methods_wallet_pChain.html b/client/docs/modules/methods_wallet_pChain.html deleted file mode 100644 index 309080d7..00000000 --- a/client/docs/modules/methods_wallet_pChain.html +++ /dev/null @@ -1,17 +0,0 @@ -methods/wallet/pChain | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                              Module methods/wallet/pChain

                                                                                                                                                                                                                                                                                                                                              Type Aliases

                                                                                                                                                                                                                                                                                                                                              ImportedOutput
                                                                                                                                                                                                                                                                                                                                              L1Validator

                                                                                                                                                                                                                                                                                                                                              L1 validator

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              PChainOwnerInfo

                                                                                                                                                                                                                                                                                                                                              P-Chain owner information

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              PrepareAddPermissionlessDelegatorTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareAddPermissionlessDelegatorTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareAddPermissionlessValidatorTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareAddPermissionlessValidatorTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareAddSubnetValidatorTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareAddSubnetValidatorTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareBaseTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareBaseTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareConvertSubnetToL1TxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareConvertSubnetToL1TxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareCreateChainTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareCreateChainTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareCreateSubnetTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareCreateSubnetTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareDisableL1ValidatorTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareDisableL1ValidatorTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareExportTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareExportTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareImportTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareImportTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareIncreaseL1ValidatorBalanceTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareIncreaseL1ValidatorBalanceTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareRegisterL1ValidatorTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareRegisterL1ValidatorTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareRemoveSubnetValidatorTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareRemoveSubnetValidatorTxnReturnType
                                                                                                                                                                                                                                                                                                                                              PrepareSetL1ValidatorWeightTxnParameters
                                                                                                                                                                                                                                                                                                                                              PrepareSetL1ValidatorWeightTxnReturnType
                                                                                                                                                                                                                                                                                                                                              SubnetOwners

                                                                                                                                                                                                                                                                                                                                              Functions

                                                                                                                                                                                                                                                                                                                                              prepareAddPermissionlessDelegatorTx

                                                                                                                                                                                                                                                                                                                                              Prepares an add permissionless delegator transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareAddPermissionlessValidatorTxn

                                                                                                                                                                                                                                                                                                                                              Prepares an add permissionless validator transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareAddSubnetValidatorTxn

                                                                                                                                                                                                                                                                                                                                              Prepares an add subnet validator transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareBaseTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a base transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareConvertSubnetToL1Txn

                                                                                                                                                                                                                                                                                                                                              Prepares a convert subnet to L1 transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareCreateChainTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a create chain transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareCreateSubnetTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a create subnet transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareDisableL1ValidatorTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a disable L1 validator transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareExportTxn

                                                                                                                                                                                                                                                                                                                                              Prepares an export transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareImportTxn

                                                                                                                                                                                                                                                                                                                                              Prepares an import transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareIncreaseL1ValidatorBalanceTxn

                                                                                                                                                                                                                                                                                                                                              Prepares an increase L1 validator balance transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareRegisterL1ValidatorTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a register L1 validator transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareRemoveSubnetValidatorTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a remove subnet validator transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              prepareSetL1ValidatorWeightTxn

                                                                                                                                                                                                                                                                                                                                              Prepares a set L1 validator weight transaction for the P-chain.

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/modules/methods_wallet_xChain.html b/client/docs/modules/methods_wallet_xChain.html deleted file mode 100644 index 1237d38d..00000000 --- a/client/docs/modules/methods_wallet_xChain.html +++ /dev/null @@ -1,4 +0,0 @@ -methods/wallet/xChain | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                Preparing search index...
                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/modules/methods_xChain.html b/client/docs/modules/methods_xChain.html deleted file mode 100644 index c9cfb790..00000000 --- a/client/docs/modules/methods_xChain.html +++ /dev/null @@ -1,49 +0,0 @@ -methods/xChain | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                  Module methods/xChain

                                                                                                                                                                                                                                                                                                                                                  Type Aliases

                                                                                                                                                                                                                                                                                                                                                  BuildGenesisErrorType
                                                                                                                                                                                                                                                                                                                                                  BuildGenesisParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.buildGenesis method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  BuildGenesisReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.buildGenesis method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetAllBalancesErrorType
                                                                                                                                                                                                                                                                                                                                                  GetAllBalancesParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getAllBalances method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetAllBalancesReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getAllBalances method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetAssetDescriptionErrorType
                                                                                                                                                                                                                                                                                                                                                  GetAssetDescriptionParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getAssetDescription method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetAssetDescriptionReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getAssetDescription method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetBalanceErrorType
                                                                                                                                                                                                                                                                                                                                                  GetBalanceParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getBalance method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetBalanceReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getBalance method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetBlockByHeightErrorType
                                                                                                                                                                                                                                                                                                                                                  GetBlockByHeightParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getBlockByHeight method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetBlockByHeightReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getBlockByHeight method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetBlockErrorType
                                                                                                                                                                                                                                                                                                                                                  GetBlockParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getBlock method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetBlockReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getBlock method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetHeightErrorType
                                                                                                                                                                                                                                                                                                                                                  GetHeightReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getHeight method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetTxErrorType
                                                                                                                                                                                                                                                                                                                                                  GetTxFeeErrorType
                                                                                                                                                                                                                                                                                                                                                  GetTxFeeReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getTxFee method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetTxParameters

                                                                                                                                                                                                                                                                                                                                                  Parameters for the avm.getTx method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetTxReturnType

                                                                                                                                                                                                                                                                                                                                                  Return type for the avm.getTx method. -Returns the transaction in the requested format.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetTxStatusErrorType
                                                                                                                                                                                                                                                                                                                                                  GetTxStatusParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getTxStatus method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetTxStatusReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getTxStatus method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetUTXOsErrorType
                                                                                                                                                                                                                                                                                                                                                  GetUTXOsParameters

                                                                                                                                                                                                                                                                                                                                                  The parameters for the avm.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  IssueTxErrorType
                                                                                                                                                                                                                                                                                                                                                  IssueTxParameters

                                                                                                                                                                                                                                                                                                                                                  Parameters for the avm.issueTx method. -This method sends a signed transaction to the network.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  IssueTxReturnType

                                                                                                                                                                                                                                                                                                                                                  Return type for the avm.issueTx method. -Returns the ID of the issued transaction.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  XChainBlockType

                                                                                                                                                                                                                                                                                                                                                  Represents an X-Chain block in either JSON or hex format. -The X-Chain is Avalanche's native platform for creating and trading assets.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  XChainTransactionStatus

                                                                                                                                                                                                                                                                                                                                                  Represents the possible statuses of an X-Chain transaction.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                  • Accepted: Transaction has been accepted and included in a block
                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                  • Processing: Transaction is being processed
                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                  • Rejected: Transaction was rejected
                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                  • Unknown: Transaction status cannot be determined
                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  XChainTransactionType

                                                                                                                                                                                                                                                                                                                                                  Represents an X-Chain transaction in either JSON or hex format. -Transactions on the X-Chain can transfer assets between addresses or export assets to other chains.

                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                  Functions

                                                                                                                                                                                                                                                                                                                                                  buildGenesis

                                                                                                                                                                                                                                                                                                                                                  Given a JSON representation of this Virtual Machine's genesis state, create the byte representation of that state.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getAllBalances

                                                                                                                                                                                                                                                                                                                                                  Get the balances of all assets controlled by given addresses.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getAssetDescription

                                                                                                                                                                                                                                                                                                                                                  Get information about an asset.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getBalance

                                                                                                                                                                                                                                                                                                                                                  Get the balance of an asset controlled by given addresses.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getBlock

                                                                                                                                                                                                                                                                                                                                                  Get a block by its ID.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getBlockByHeight

                                                                                                                                                                                                                                                                                                                                                  Get a block by its height.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getHeight

                                                                                                                                                                                                                                                                                                                                                  Get the height of the blockchain.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getTx

                                                                                                                                                                                                                                                                                                                                                  Get a transaction by its ID.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getTxFee

                                                                                                                                                                                                                                                                                                                                                  Get the transaction fee for a given transaction.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getTxStatus

                                                                                                                                                                                                                                                                                                                                                  Get the status of a transaction.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  getUTXOs

                                                                                                                                                                                                                                                                                                                                                  Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  issueTx

                                                                                                                                                                                                                                                                                                                                                  Issue a transaction.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/modules/utils.html b/client/docs/modules/utils.html deleted file mode 100644 index 3e170078..00000000 --- a/client/docs/modules/utils.html +++ /dev/null @@ -1,7 +0,0 @@ -utils | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                    Module utils

                                                                                                                                                                                                                                                                                                                                                    Type Aliases

                                                                                                                                                                                                                                                                                                                                                    GetUtxosForAddressParams

                                                                                                                                                                                                                                                                                                                                                    Functions

                                                                                                                                                                                                                                                                                                                                                    CB58ToHex

                                                                                                                                                                                                                                                                                                                                                    Decodes a CB58 string into a hex string (0x...).

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    getTxFromBytes

                                                                                                                                                                                                                                                                                                                                                    Get a transaction from a buffer or hex string

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    getUnsignedTxFromBytes

                                                                                                                                                                                                                                                                                                                                                    Get an unsigned transaction from a buffer or hex string

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    getUtxoFromBytes

                                                                                                                                                                                                                                                                                                                                                    Get a Utxo from a buffer or hex string

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    getUtxosForAddress

                                                                                                                                                                                                                                                                                                                                                    Get the UTXOs for an address.

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    hexToCB58

                                                                                                                                                                                                                                                                                                                                                    Encodes a hex string (0x...) into CB58.

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/accounts.AvalancheAccount.html b/client/docs/types/accounts.AvalancheAccount.html deleted file mode 100644 index 5e77811b..00000000 --- a/client/docs/types/accounts.AvalancheAccount.html +++ /dev/null @@ -1,17 +0,0 @@ -AvalancheAccount | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                      Type Alias AvalancheAccount

                                                                                                                                                                                                                                                                                                                                                      AvalancheAccount is a type that represents an account on the Avalanche network. -It can be a combination of an EVM account and an XP account.

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      type AvalancheAccount = {
                                                                                                                                                                                                                                                                                                                                                          evmAccount: Account;
                                                                                                                                                                                                                                                                                                                                                          getEVMAddress: () => Address;
                                                                                                                                                                                                                                                                                                                                                          getXPAddress: (chain?: "X" | "P" | "C", hrp?: string) => XPAddress;
                                                                                                                                                                                                                                                                                                                                                          xpAccount?: XPAccount;
                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                      evmAccount: Account

                                                                                                                                                                                                                                                                                                                                                      The EVM account used for C-chain or any EVM chain operations. -Type: Account

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      getEVMAddress: () => Address

                                                                                                                                                                                                                                                                                                                                                      Get the EVM address for the account.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                        • (): Address
                                                                                                                                                                                                                                                                                                                                                        • Returns Address

                                                                                                                                                                                                                                                                                                                                                          The EVM address for the account. Address

                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                      getXPAddress: (chain?: "X" | "P" | "C", hrp?: string) => XPAddress

                                                                                                                                                                                                                                                                                                                                                      Get the XP address for the X and P chain account.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                        • (chain?: "X" | "P" | "C", hrp?: string): XPAddress
                                                                                                                                                                                                                                                                                                                                                        • Parameters

                                                                                                                                                                                                                                                                                                                                                          • Optionalchain: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                            The chain to get the XP address for. "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                          • Optionalhrp: string

                                                                                                                                                                                                                                                                                                                                                            The human readable prefix to use for the XP address. Default to "avax". "avax" | "fuji" | any custom hrp

                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                          Returns XPAddress

                                                                                                                                                                                                                                                                                                                                                          The XP address for the account. XPAddress

                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                      xpAccount?: XPAccount

                                                                                                                                                                                                                                                                                                                                                      The AVM and PVM account used for X and P chain operations. -Type: XPAccount

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/accounts.HDKeyToAvalancheAccountOptions.html b/client/docs/types/accounts.HDKeyToAvalancheAccountOptions.html deleted file mode 100644 index 2ababf68..00000000 --- a/client/docs/types/accounts.HDKeyToAvalancheAccountOptions.html +++ /dev/null @@ -1,2 +0,0 @@ -HDKeyToAvalancheAccountOptions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                        Type Alias HDKeyToAvalancheAccountOptions

                                                                                                                                                                                                                                                                                                                                                        HDKeyToAvalancheAccountOptions: HDKeyToAccountOptions & { xpAccountIndex?: number; xpAddressIndex?: number; xpChangeIndex?: number }

                                                                                                                                                                                                                                                                                                                                                        Options for the hdKeyToAvalancheAccount function.

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/accounts.LocalXPAccount.html b/client/docs/types/accounts.LocalXPAccount.html deleted file mode 100644 index be57b7ab..00000000 --- a/client/docs/types/accounts.LocalXPAccount.html +++ /dev/null @@ -1,9 +0,0 @@ -LocalXPAccount | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                          Type Alias LocalXPAccount

                                                                                                                                                                                                                                                                                                                                                          LocalXPAccount is a type that represents an X or P chain account. -It is a local account.

                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          type LocalXPAccount = {
                                                                                                                                                                                                                                                                                                                                                              publicKey: string;
                                                                                                                                                                                                                                                                                                                                                              signMessage: (message: string) => Promise<string>;
                                                                                                                                                                                                                                                                                                                                                              signTransaction: (txHash: string | Uint8Array) => Promise<string>;
                                                                                                                                                                                                                                                                                                                                                              source: "hdKey" | "privateKey" | "mnemonic";
                                                                                                                                                                                                                                                                                                                                                              type: "local";
                                                                                                                                                                                                                                                                                                                                                              verify: (message: string, signature: string) => boolean;
                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                          publicKey: string
                                                                                                                                                                                                                                                                                                                                                          signMessage: (message: string) => Promise<string>
                                                                                                                                                                                                                                                                                                                                                          signTransaction: (txHash: string | Uint8Array) => Promise<string>
                                                                                                                                                                                                                                                                                                                                                          source: "hdKey" | "privateKey" | "mnemonic"
                                                                                                                                                                                                                                                                                                                                                          type: "local"
                                                                                                                                                                                                                                                                                                                                                          verify: (message: string, signature: string) => boolean
                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/accounts.XPAccount.html b/client/docs/types/accounts.XPAccount.html deleted file mode 100644 index eb69bae0..00000000 --- a/client/docs/types/accounts.XPAccount.html +++ /dev/null @@ -1,3 +0,0 @@ -XPAccount | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                            Type Alias XPAccount

                                                                                                                                                                                                                                                                                                                                                            XPAccount: LocalXPAccount

                                                                                                                                                                                                                                                                                                                                                            XPAccount is a type that represents an X or P chain account. -It can be a local account or a remote account.

                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/accounts.XPAddress.html b/client/docs/types/accounts.XPAddress.html deleted file mode 100644 index 13dcfe40..00000000 --- a/client/docs/types/accounts.XPAddress.html +++ /dev/null @@ -1,2 +0,0 @@ -XPAddress | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                              Type Alias XPAddress

                                                                                                                                                                                                                                                                                                                                                              XPAddress: string

                                                                                                                                                                                                                                                                                                                                                              XPAddress is a type that represents an X or P chain address.

                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.AdminAPIActions.html b/client/docs/types/index.AdminAPIActions.html deleted file mode 100644 index 9f57e63e..00000000 --- a/client/docs/types/index.AdminAPIActions.html +++ /dev/null @@ -1,99 +0,0 @@ -AdminAPIActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                Type Alias AdminAPIActions

                                                                                                                                                                                                                                                                                                                                                                type AdminAPIActions = {
                                                                                                                                                                                                                                                                                                                                                                    alias: (args: AliasParameters) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                    aliasChain: (args: AliasChainParameters) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                    getChainAliases: (args: GetChainAliasesParameters) => Promise<GetChainAliasesReturnType>;
                                                                                                                                                                                                                                                                                                                                                                    getLoggerLevel: (args: GetLoggerLevelParameters) => Promise<GetLoggerLevelReturnType>;
                                                                                                                                                                                                                                                                                                                                                                    loadVMs: () => Promise<LoadVMsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                    lockProfile: () => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                    memoryProfile: () => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                    setLoggerLevel: (args: SetLoggerLevelParameters) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                    startCPUProfiler: () => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                    stopCPUProfiler: () => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                alias: (args: AliasParameters) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Assign an API endpoint an alias, a different endpoint for the API. -The original endpoint will still work. This change only affects this node.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.alias({
                                                                                                                                                                                                                                                                                                                                                                endpoint: "bc/X",
                                                                                                                                                                                                                                                                                                                                                                alias: "myAlias"
                                                                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                aliasChain: (args: AliasChainParameters) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Give a blockchain an alias, a different name that can be used any place the blockchain's ID is used. -Note: The alias is set for each chain on each node individually.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.aliasChain({
                                                                                                                                                                                                                                                                                                                                                                chain: "sV6o671RtkGBcno1FiaDbVcFv2sG5aVXMZYzKdP4VQAWmJQnM",
                                                                                                                                                                                                                                                                                                                                                                alias: "myBlockchainAlias"
                                                                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                getChainAliases: (args: GetChainAliasesParameters) => Promise<GetChainAliasesReturnType>
                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                const aliases = await client.admin.getChainAliases({
                                                                                                                                                                                                                                                                                                                                                                chain: "sV6o671RtkGBcno1FiaDbVcFv2sG5aVXMZYzKdP4VQAWmJQnM"
                                                                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                getLoggerLevel: (args: GetLoggerLevelParameters) => Promise<GetLoggerLevelReturnType>

                                                                                                                                                                                                                                                                                                                                                                Returns log and display levels of loggers.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                const loggerLevels = await client.admin.getLoggerLevel({
                                                                                                                                                                                                                                                                                                                                                                loggerName: "C"
                                                                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                loadVMs: () => Promise<LoadVMsReturnType>

                                                                                                                                                                                                                                                                                                                                                                Dynamically loads any virtual machines installed on the node as plugins.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                const vms = await client.admin.loadVMs() -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                lockProfile: () => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Writes a profile of mutex statistics to lock.profile.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                  • (): Promise<void>
                                                                                                                                                                                                                                                                                                                                                                  • Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                    Promise that resolves when the profile is written

                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.lockProfile() -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                memoryProfile: () => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Writes a memory profile of the node to mem.profile.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                  • (): Promise<void>
                                                                                                                                                                                                                                                                                                                                                                  • Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                    Promise that resolves when the profile is written

                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.memoryProfile() -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                setLoggerLevel: (args: SetLoggerLevelParameters) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Sets log and display levels of loggers.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.setLoggerLevel({
                                                                                                                                                                                                                                                                                                                                                                loggerName: "C",
                                                                                                                                                                                                                                                                                                                                                                logLevel: "DEBUG",
                                                                                                                                                                                                                                                                                                                                                                displayLevel: "INFO"
                                                                                                                                                                                                                                                                                                                                                                }) -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                startCPUProfiler: () => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Start profiling the CPU utilization of the node. -To stop, call stopCPUProfiler. On stop, writes the profile to cpu.profile.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                  • (): Promise<void>
                                                                                                                                                                                                                                                                                                                                                                  • Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                    Promise that resolves when the profiler is started

                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.startCPUProfiler() -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                stopCPUProfiler: () => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                Stop the CPU profile that was previously started.

                                                                                                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                  • (): Promise<void>
                                                                                                                                                                                                                                                                                                                                                                  • Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                    Promise that resolves when the profiler is stopped

                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                transport: {
                                                                                                                                                                                                                                                                                                                                                                type: "http",
                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                })

                                                                                                                                                                                                                                                                                                                                                                await client.admin.stopCPUProfiler() -
                                                                                                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.AdminApiClient.html b/client/docs/types/index.AdminApiClient.html deleted file mode 100644 index 9fa31755..00000000 --- a/client/docs/types/index.AdminApiClient.html +++ /dev/null @@ -1 +0,0 @@ -AdminApiClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                  Type Alias AdminApiClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                  AdminApiClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : AdminRpcSchema, AdminAPIActions>>

                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                  • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                  • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                  • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                  • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.AdminApiClientConfig.html b/client/docs/types/index.AdminApiClientConfig.html deleted file mode 100644 index 7c4abafe..00000000 --- a/client/docs/types/index.AdminApiClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -AdminApiClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                    Type Alias AdminApiClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                    AdminApiClientConfig: Prettify<AvalancheClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>>

                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                    • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                    • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                    • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                    • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                    • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.AdminRpcSchema.html b/client/docs/types/index.AdminRpcSchema.html deleted file mode 100644 index 5d2a3cc5..00000000 --- a/client/docs/types/index.AdminRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -AdminRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                      Type Alias AdminRpcSchema

                                                                                                                                                                                                                                                                                                                                                                      AdminRpcSchema: RpcSchemaOverride & AdminMethods

                                                                                                                                                                                                                                                                                                                                                                      The RPC schema for the Admin methods.

                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.AvalancheBaseClient.html b/client/docs/types/index.AvalancheBaseClient.html deleted file mode 100644 index 2d4e3a8e..00000000 --- a/client/docs/types/index.AvalancheBaseClient.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheBaseClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                        Type Alias AvalancheBaseClient<transport, chain, account, rpcSchema, extended>

                                                                                                                                                                                                                                                                                                                                                                        AvalancheBaseClient: Prettify<
                                                                                                                                                                                                                                                                                                                                                                            Omit<Client<(...), (...), (...), (...), (...)>, "extend"> & ((...) extends (...) ? (...) : (...)) & { extend: <const client extends ...>(fn: ...) => ... },
                                                                                                                                                                                                                                                                                                                                                                        >

                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                        • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                        • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                        • account extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                        • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                        • extended extends Extended | undefined = Extended | undefined
                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.AvalancheBaseClientConfig.html b/client/docs/types/index.AvalancheBaseClientConfig.html deleted file mode 100644 index 43263bb5..00000000 --- a/client/docs/types/index.AvalancheBaseClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheBaseClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                          Type Alias AvalancheBaseClientConfig<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                          AvalancheBaseClientConfig: Prettify<
                                                                                                                                                                                                                                                                                                                                                                              Pick<
                                                                                                                                                                                                                                                                                                                                                                                  ClientConfig<transport, chain, accountOrAddress, rpcSchema>,
                                                                                                                                                                                                                                                                                                                                                                                  "batch" | "cacheTime" | "ccipRead" | "chain" | "key" | "name" | "pollingInterval" | "rpcSchema" | "transport",
                                                                                                                                                                                                                                                                                                                                                                              >,
                                                                                                                                                                                                                                                                                                                                                                          >

                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                          • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                          • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                          • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                          • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.AvalancheClient.html b/client/docs/types/index.AvalancheClient.html deleted file mode 100644 index 042e161c..00000000 --- a/client/docs/types/index.AvalancheClient.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                            Type Alias AvalancheClient<transport, chain, accountOrAddress>

                                                                                                                                                                                                                                                                                                                                                                            AvalancheClient: Prettify<Client<transport, chain, accountOrAddress, (...) & (...), (...) & (...)> & ((...) extends (...) ? (...) : (...))>

                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                            • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                            • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                            • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.AvalancheClientConfig.html b/client/docs/types/index.AvalancheClientConfig.html deleted file mode 100644 index 56d9a866..00000000 --- a/client/docs/types/index.AvalancheClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                              Type Alias AvalancheClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                              AvalancheClientConfig: Prettify<Omit<AvalancheCoreClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>, "clientType">>

                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                              • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                              • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                              • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                              • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                              • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.AvalancheCoreClient.html b/client/docs/types/index.AvalancheCoreClient.html deleted file mode 100644 index d485dfc8..00000000 --- a/client/docs/types/index.AvalancheCoreClient.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheCoreClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                Type Alias AvalancheCoreClient<transport, chain, account, rpcSchema, extended>

                                                                                                                                                                                                                                                                                                                                                                                AvalancheCoreClient: Prettify<AvalancheBaseClient<transport, chain, account, rpcSchema, extended>>

                                                                                                                                                                                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                • account extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                • extended extends Extended | undefined = Extended | undefined
                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.AvalancheCoreClientConfig.html b/client/docs/types/index.AvalancheCoreClientConfig.html deleted file mode 100644 index 8b9f8cc1..00000000 --- a/client/docs/types/index.AvalancheCoreClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheCoreClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                  Type Alias AvalancheCoreClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                  AvalancheCoreClientConfig: Prettify<
                                                                                                                                                                                                                                                                                                                                                                                      Omit<AvalancheBaseClientConfig<(...), (...), (...), (...)>, "transport"> & {
                                                                                                                                                                                                                                                                                                                                                                                          apiKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                          clientType?: (...) | (...);
                                                                                                                                                                                                                                                                                                                                                                                          rlToken?: string;
                                                                                                                                                                                                                                                                                                                                                                                          transport: AvalancheTransportConfig<(...), (...), (...)>;
                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                  >

                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                  • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                  • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                  • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                  • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                  • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.AvalanchePublicActions.html b/client/docs/types/index.AvalanchePublicActions.html deleted file mode 100644 index dc5339c4..00000000 --- a/client/docs/types/index.AvalanchePublicActions.html +++ /dev/null @@ -1,49 +0,0 @@ -AvalanchePublicActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                    Type Alias AvalanchePublicActions

                                                                                                                                                                                                                                                                                                                                                                                    type AvalanchePublicActions = {
                                                                                                                                                                                                                                                                                                                                                                                        baseFee: () => Promise<BaseFeeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                        feeConfig: (args: FeeConfigParameters) => Promise<FeeConfigReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                        getActiveRulesAt: (args: GetActiveRulesAtParameters) => Promise<GetActiveRulesAtReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                        getChainConfig: () => Promise<GetChainConfigReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                        maxPriorityFeePerGas: () => Promise<MaxPriorityFeePerGasReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                    baseFee: () => Promise<BaseFeeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                    Get the base fee for the next block.

                                                                                                                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                    import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                    const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                    transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                    })

                                                                                                                                                                                                                                                                                                                                                                                    const baseFee = await client.baseFee() -
                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                    feeConfig: (args: FeeConfigParameters) => Promise<FeeConfigReturnType>

                                                                                                                                                                                                                                                                                                                                                                                    Get the fee config for a specific block.

                                                                                                                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                    import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                    const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                    transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                    })

                                                                                                                                                                                                                                                                                                                                                                                    const feeConfig = await client.feeConfig({ blk: "0x1" }) -
                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                    getActiveRulesAt: (args: GetActiveRulesAtParameters) => Promise<GetActiveRulesAtReturnType>

                                                                                                                                                                                                                                                                                                                                                                                    Get the active rules at a specific timestamp.

                                                                                                                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                    import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                    const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                    transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                    })

                                                                                                                                                                                                                                                                                                                                                                                    const activeRules = await client.getActiveRulesAt({ timestamp: "0x1" }) -
                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                    getChainConfig: () => Promise<GetChainConfigReturnType>

                                                                                                                                                                                                                                                                                                                                                                                    Get the chain configuration for the C-Chain.

                                                                                                                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                    import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                    const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                    transport: {
                                                                                                                                                                                                                                                                                                                                                                                    type: "http",
                                                                                                                                                                                                                                                                                                                                                                                    },
                                                                                                                                                                                                                                                                                                                                                                                    })

                                                                                                                                                                                                                                                                                                                                                                                    const chainConfig = await client.getChainConfig() -
                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                    maxPriorityFeePerGas: () => Promise<MaxPriorityFeePerGasReturnType>

                                                                                                                                                                                                                                                                                                                                                                                    Get the priority fee needed to be included in a block.

                                                                                                                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                    import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                    import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                    const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                    chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                    transport: {
                                                                                                                                                                                                                                                                                                                                                                                    type: "http",
                                                                                                                                                                                                                                                                                                                                                                                    },
                                                                                                                                                                                                                                                                                                                                                                                    })

                                                                                                                                                                                                                                                                                                                                                                                    const maxPriorityFee = await client.maxPriorityFeePerGas() -
                                                                                                                                                                                                                                                                                                                                                                                    - -
                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.AvalanchePublicRpcSchema.html b/client/docs/types/index.AvalanchePublicRpcSchema.html deleted file mode 100644 index eab9b0d1..00000000 --- a/client/docs/types/index.AvalanchePublicRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -AvalanchePublicRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                      Type Alias AvalanchePublicRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                      AvalanchePublicRpcSchema: RpcSchemaOverride & AvalanchePublicMethods

                                                                                                                                                                                                                                                                                                                                                                                      The RPC schema for the Avalanche Public methods.

                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.AvalancheTransportConfig.html b/client/docs/types/index.AvalancheTransportConfig.html deleted file mode 100644 index d291c95b..00000000 --- a/client/docs/types/index.AvalancheTransportConfig.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheTransportConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                        Type Alias AvalancheTransportConfig<transport, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                        AvalancheTransportConfig:
                                                                                                                                                                                                                                                                                                                                                                                            | { config?: HttpTransportConfig<rpcSchema, raw>; type: "http"; url?: string }
                                                                                                                                                                                                                                                                                                                                                                                            | { config?: WebSocketTransportConfig; type: "ws"; url?: string }
                                                                                                                                                                                                                                                                                                                                                                                            | { config?: CustomTransportConfig; provider: any; type: "custom" }
                                                                                                                                                                                                                                                                                                                                                                                            | { config?: IpcTransportConfig; path: string; type: "ipc" }
                                                                                                                                                                                                                                                                                                                                                                                            | { config?: FallbackTransportConfig; transports: transport[]; type: "fallback" }

                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                        • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                        • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                        • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.AvalancheWalletActions.html b/client/docs/types/index.AvalancheWalletActions.html deleted file mode 100644 index 277997d6..00000000 --- a/client/docs/types/index.AvalancheWalletActions.html +++ /dev/null @@ -1,57 +0,0 @@ -AvalancheWalletActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                          Type Alias AvalancheWalletActions

                                                                                                                                                                                                                                                                                                                                                                                          type AvalancheWalletActions = {
                                                                                                                                                                                                                                                                                                                                                                                              getAccountPubKey: () => Promise<GetAccountPubKeyReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                              send: (args: SendParameters) => Promise<SendReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                              sendXPTransaction: (args: SendXPTransactionParameters) => Promise<SendXPTransactionReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                              signXPMessage: (args: SignXPMessageParameters) => Promise<SignXPMessageReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                              signXPTransaction: (args: SignXPTransactionParameters) => Promise<SignXPTransactionReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                              waitForTxn: (args: WaitForTxnParameters) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                          getAccountPubKey: () => Promise<GetAccountPubKeyReturnType>

                                                                                                                                                                                                                                                                                                                                                                                          Gets the public key associated with the wallet account.

                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                          // You can pass a local account otherwise a custom provider can be used
                                                                                                                                                                                                                                                                                                                                                                                          const account = privateKeyToAvalancheAccount("0x...")
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          account,
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const pubKey = await walletClient.getAccountPubKey()

                                                                                                                                                                                                                                                                                                                                                                                          // Or you can use a custom provider (e.g. window.avalanche, window.ethereum, etc.)
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "custom", provider: window.avalanche! },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const pubKey = await walletClient.getAccountPubKey() -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          send: (args: SendParameters) => Promise<SendReturnType>

                                                                                                                                                                                                                                                                                                                                                                                          Sends tokens from the source chain to the destination chain.

                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const result = await walletClient.send({
                                                                                                                                                                                                                                                                                                                                                                                          amount: 1,
                                                                                                                                                                                                                                                                                                                                                                                          to: "0x0000000000000000000000000000000000000000",
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          sendXPTransaction: (args: SendXPTransactionParameters) => Promise<SendXPTransactionReturnType>

                                                                                                                                                                                                                                                                                                                                                                                          Sends an XP transaction to the network.

                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                          // You can pass a local account otherwise a custom provider can be used
                                                                                                                                                                                                                                                                                                                                                                                          const account = privateKeyToAvalancheAccount("0x...")
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          account,
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const result = await walletClient.sendXPTransaction({
                                                                                                                                                                                                                                                                                                                                                                                          amount: "1000000000",
                                                                                                                                                                                                                                                                                                                                                                                          to: "X-avax1...",
                                                                                                                                                                                                                                                                                                                                                                                          assetID: "AVAX"
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          // Or you can use a custom provider (e.g. window.avalanche, window.ethereum, etc.)
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "custom", provider: window.avalanche! },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const result = await walletClient.sendXPTransaction({
                                                                                                                                                                                                                                                                                                                                                                                          amount: "1000000000",
                                                                                                                                                                                                                                                                                                                                                                                          to: "X-avax1...",
                                                                                                                                                                                                                                                                                                                                                                                          assetID: "AVAX"
                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          signXPMessage: (args: SignXPMessageParameters) => Promise<SignXPMessageReturnType>

                                                                                                                                                                                                                                                                                                                                                                                          Signs a message using the wallet's private key.

                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                          // You can pass a local account otherwise a custom provider can be used
                                                                                                                                                                                                                                                                                                                                                                                          const account = privateKeyToAvalancheAccount("0x...")
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          account,
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const signedMessage = await walletClient.signXPMessage({
                                                                                                                                                                                                                                                                                                                                                                                          message: "Hello Avalanche",
                                                                                                                                                                                                                                                                                                                                                                                          address: "X-avax1..."
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          // Or you can use a custom provider (e.g. window.avalanche, window.ethereum, etc.)
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "custom", provider: window.avalanche! },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const signedMessage = await walletClient.signXPMessage({
                                                                                                                                                                                                                                                                                                                                                                                          message: "Hello Avalanche",
                                                                                                                                                                                                                                                                                                                                                                                          address: "X-avax1..."
                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          signXPTransaction: (args: SignXPTransactionParameters) => Promise<SignXPTransactionReturnType>

                                                                                                                                                                                                                                                                                                                                                                                          Signs an XP transaction using the wallet's private key.

                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                          // You can pass a local account otherwise a custom provider can be used
                                                                                                                                                                                                                                                                                                                                                                                          const account = privateKeyToAvalancheAccount("0x...")
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          account,
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const signedTx = await walletClient.signXPTransaction({
                                                                                                                                                                                                                                                                                                                                                                                          tx: "0x...",
                                                                                                                                                                                                                                                                                                                                                                                          address: "X-avax1..."
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          // Or you can use a custom provider (e.g. window.avalanche, window.ethereum, etc.)
                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "custom", provider: window.avalanche! },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const signedTx = await walletClient.signXPTransaction({
                                                                                                                                                                                                                                                                                                                                                                                          tx: "0x...",
                                                                                                                                                                                                                                                                                                                                                                                          address: "X-avax1..."
                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          waitForTxn: (args: WaitForTxnParameters) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                          Waits for a transaction to be confirmed on the network.

                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                          const walletClient = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                          transport: { type: "http" },
                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                          const result = await walletClient.waitForTxn({
                                                                                                                                                                                                                                                                                                                                                                                          txID: "0x...",
                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P"
                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.AvalancheWalletClient.html b/client/docs/types/index.AvalancheWalletClient.html deleted file mode 100644 index bf8a07eb..00000000 --- a/client/docs/types/index.AvalancheWalletClient.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheWalletClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                            Type Alias AvalancheWalletClient<transport, chain, account, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                            AvalancheWalletClient: Prettify<
                                                                                                                                                                                                                                                                                                                                                                                                Client<transport, chain, account, (...) extends (...) ? (...) : (...), (...) & (...)> & {
                                                                                                                                                                                                                                                                                                                                                                                                    cChainClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    pChainClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    xChainClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    xpAccount?: XPAccount;
                                                                                                                                                                                                                                                                                                                                                                                                } & {
                                                                                                                                                                                                                                                                                                                                                                                                    cChain: AvalancheWalletCoreClient<(...), (...), (...), (...), (...)>;
                                                                                                                                                                                                                                                                                                                                                                                                    erc20: AvalancheWalletCoreClient<(...), (...), (...), (...), (...)>;
                                                                                                                                                                                                                                                                                                                                                                                                    pChain: AvalancheWalletCoreClient<(...), (...), (...), (...), (...)>;
                                                                                                                                                                                                                                                                                                                                                                                                    xChain: AvalancheWalletCoreClient<(...), (...), (...), (...), (...)>;
                                                                                                                                                                                                                                                                                                                                                                                                },
                                                                                                                                                                                                                                                                                                                                                                                            >

                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                            • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                            • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                            • account extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                            • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.AvalancheWalletClientConfig.html b/client/docs/types/index.AvalancheWalletClientConfig.html deleted file mode 100644 index 91994d5d..00000000 --- a/client/docs/types/index.AvalancheWalletClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheWalletClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                              Type Alias AvalancheWalletClientConfig<transport, chain, account, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                              AvalancheWalletClientConfig: Prettify<AvalancheWalletCoreClientConfig<transport, chain, account, rpcSchema, raw>>

                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                              • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                              • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                              • account extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                              • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                              • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.AvalancheWalletCoreClient.html b/client/docs/types/index.AvalancheWalletCoreClient.html deleted file mode 100644 index 78a49ff8..00000000 --- a/client/docs/types/index.AvalancheWalletCoreClient.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheWalletCoreClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                Type Alias AvalancheWalletCoreClient<transport, chain, account, rpcSchema, extended>

                                                                                                                                                                                                                                                                                                                                                                                                AvalancheWalletCoreClient: Client<transport, chain, account, rpcSchema, extended> & {
                                                                                                                                                                                                                                                                                                                                                                                                    cChainClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    infoClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    pChainClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    xChainClient: AvalancheCoreClient;
                                                                                                                                                                                                                                                                                                                                                                                                    xpAccount?: XPAccount;
                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                • account extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                • extended extends Extended | undefined = Extended | undefined
                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.AvalancheWalletCoreClientConfig.html b/client/docs/types/index.AvalancheWalletCoreClientConfig.html deleted file mode 100644 index 196a46c2..00000000 --- a/client/docs/types/index.AvalancheWalletCoreClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -AvalancheWalletCoreClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias AvalancheWalletCoreClientConfig<transport, chain, account, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                  AvalancheWalletCoreClientConfig: Prettify<
                                                                                                                                                                                                                                                                                                                                                                                                      Pick<ClientConfig<(...), (...), (...), (...)>, (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...)> & {
                                                                                                                                                                                                                                                                                                                                                                                                          account: (...) | (...) | (...);
                                                                                                                                                                                                                                                                                                                                                                                                          apiKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                                          rlToken?: string;
                                                                                                                                                                                                                                                                                                                                                                                                          transport: AvalancheTransportConfig<(...), (...), (...)>;
                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                  >

                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                  • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                  • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                  • account extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                  • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                  • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.AvalancheWalletRpcSchema.html b/client/docs/types/index.AvalancheWalletRpcSchema.html deleted file mode 100644 index bd90c578..00000000 --- a/client/docs/types/index.AvalancheWalletRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -AvalancheWalletRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias AvalancheWalletRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                    AvalancheWalletRpcSchema: RpcSchemaOverride & AvalancheWalletMethods

                                                                                                                                                                                                                                                                                                                                                                                                    The RPC schema for the Avalanche Wallet methods.

                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.CChainActions.html b/client/docs/types/index.CChainActions.html deleted file mode 100644 index cd1cc0a7..00000000 --- a/client/docs/types/index.CChainActions.html +++ /dev/null @@ -1,41 +0,0 @@ -CChainActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias CChainActions

                                                                                                                                                                                                                                                                                                                                                                                                      type CChainActions = {
                                                                                                                                                                                                                                                                                                                                                                                                          getAtomicTx: (args: GetAtomicTxParameters) => Promise<GetAtomicTxReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                          getAtomicTxStatus: (args: GetAtomicTxStatusParameters) => Promise<GetAtomicTxStatusReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                          getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                          issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                      getAtomicTx: (args: GetAtomicTxParameters) => Promise<GetAtomicTxReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                      Get the atomic transaction by its ID.

                                                                                                                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                      import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                      const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                      transport: {
                                                                                                                                                                                                                                                                                                                                                                                                      type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                      })

                                                                                                                                                                                                                                                                                                                                                                                                      const tx = await client.cChain.getAtomicTx({
                                                                                                                                                                                                                                                                                                                                                                                                      txID: "2QouvMUbQ6oy7yQ9tLvL3L8tGQG2QK1wJ1q1wJ1q1wJ1q1wJ1q1wJ1q1wJ1"
                                                                                                                                                                                                                                                                                                                                                                                                      }) -
                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                      getAtomicTxStatus: (args: GetAtomicTxStatusParameters) => Promise<GetAtomicTxStatusReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                      Get the status of an atomic transaction.

                                                                                                                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                      import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                      const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                      transport: {
                                                                                                                                                                                                                                                                                                                                                                                                      type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                      })

                                                                                                                                                                                                                                                                                                                                                                                                      const status = await client.cChain.getAtomicTxStatus({
                                                                                                                                                                                                                                                                                                                                                                                                      txID: "2QouvMUbQ6oy7yQ9tLvL3L8tGQG2QK1wJ1q1wJ1q1wJ1q1wJ1q1wJ1q1wJ1"
                                                                                                                                                                                                                                                                                                                                                                                                      }) -
                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                      getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                      Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                      import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                      const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                      transport: {
                                                                                                                                                                                                                                                                                                                                                                                                      type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                      })

                                                                                                                                                                                                                                                                                                                                                                                                      const utxos = await client.cChain.getUTXOs({
                                                                                                                                                                                                                                                                                                                                                                                                      addresses: ["X-avax1...", "X-avax2..."],
                                                                                                                                                                                                                                                                                                                                                                                                      limit: 100
                                                                                                                                                                                                                                                                                                                                                                                                      }) -
                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                      issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                      Send a signed transaction to the network.

                                                                                                                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                      import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                      import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                      const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                      chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                      transport: {
                                                                                                                                                                                                                                                                                                                                                                                                      type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                      },
                                                                                                                                                                                                                                                                                                                                                                                                      })

                                                                                                                                                                                                                                                                                                                                                                                                      const txID = await client.cChain.issueTx({
                                                                                                                                                                                                                                                                                                                                                                                                      tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                                                                                                                                                                                                                                                                                                                                                      encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                      }) -
                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.CChainClient.html b/client/docs/types/index.CChainClient.html deleted file mode 100644 index ecf1652d..00000000 --- a/client/docs/types/index.CChainClient.html +++ /dev/null @@ -1 +0,0 @@ -CChainClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias CChainClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                                        CChainClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : CChainRpcSchema, CChainActions>>

                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                        • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                        • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                        • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                        • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.CChainClientConfig.html b/client/docs/types/index.CChainClientConfig.html deleted file mode 100644 index 907729aa..00000000 --- a/client/docs/types/index.CChainClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -CChainClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias CChainClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                          • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                                          • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                          • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                          • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                          • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.CChainRpcSchema.html b/client/docs/types/index.CChainRpcSchema.html deleted file mode 100644 index ef06cd69..00000000 --- a/client/docs/types/index.CChainRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -CChainRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias CChainRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                            CChainRpcSchema: RpcSchemaOverride & CChainMethods

                                                                                                                                                                                                                                                                                                                                                                                                            The RPC schema for the C-Chain methods.

                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.CChainWalletActions.html b/client/docs/types/index.CChainWalletActions.html deleted file mode 100644 index 5e2ef590..00000000 --- a/client/docs/types/index.CChainWalletActions.html +++ /dev/null @@ -1,19 +0,0 @@ -CChainWalletActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias CChainWalletActions

                                                                                                                                                                                                                                                                                                                                                                                                              type CChainWalletActions = {
                                                                                                                                                                                                                                                                                                                                                                                                                  prepareExportTxn: (args: PrepareExportTxnParameters) => Promise<PrepareExportTxnReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                  prepareImportTxn: (args: PrepareImportTxnParameters) => Promise<PrepareImportTxnReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                              prepareExportTxn: (args: PrepareExportTxnParameters) => Promise<PrepareExportTxnReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                              Prepare an export transaction from C-Chain to another chain (X-Chain or P-Chain). -This method creates the transaction data needed to export AVAX from the C-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                              const client = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                                              chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                              transport: {
                                                                                                                                                                                                                                                                                                                                                                                                              type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                              },
                                                                                                                                                                                                                                                                                                                                                                                                              })

                                                                                                                                                                                                                                                                                                                                                                                                              const exportTxn = await client.cChain.prepareExportTxn({
                                                                                                                                                                                                                                                                                                                                                                                                              to: "P-fuji1j2zllfqv4mgg7ytn9m2u2x0q3h3jqkzq8q8q8q8",
                                                                                                                                                                                                                                                                                                                                                                                                              amount: "1", // 1 AVAX
                                                                                                                                                                                                                                                                                                                                                                                                              destinationChain: "X"
                                                                                                                                                                                                                                                                                                                                                                                                              }) -
                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                              prepareImportTxn: (args: PrepareImportTxnParameters) => Promise<PrepareImportTxnReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                              Prepare an import transaction from another chain (X-Chain or P-Chain) to C-Chain. -This method creates the transaction data needed to import AVAX to the C-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              import { createAvalancheWalletClient } from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                              import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                              const client = createAvalancheWalletClient({
                                                                                                                                                                                                                                                                                                                                                                                                              chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                              transport: {
                                                                                                                                                                                                                                                                                                                                                                                                              type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                              },
                                                                                                                                                                                                                                                                                                                                                                                                              })

                                                                                                                                                                                                                                                                                                                                                                                                              const importTxn = await client.cChain.prepareImportTxn({
                                                                                                                                                                                                                                                                                                                                                                                                              to: "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6",
                                                                                                                                                                                                                                                                                                                                                                                                              sourceChain: "X"
                                                                                                                                                                                                                                                                                                                                                                                                              }) -
                                                                                                                                                                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.CreateAdminApiClientErrorType.html b/client/docs/types/index.CreateAdminApiClientErrorType.html deleted file mode 100644 index 07b09e22..00000000 --- a/client/docs/types/index.CreateAdminApiClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateAdminApiClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias CreateAdminApiClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                CreateAdminApiClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.CreateAvalancheBaseClientErrorType.html b/client/docs/types/index.CreateAvalancheBaseClientErrorType.html deleted file mode 100644 index 98337a9a..00000000 --- a/client/docs/types/index.CreateAvalancheBaseClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateAvalancheBaseClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias CreateAvalancheBaseClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                  CreateAvalancheBaseClientErrorType: CreatePublicClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.CreateAvalancheClientErrorType.html b/client/docs/types/index.CreateAvalancheClientErrorType.html deleted file mode 100644 index 52430772..00000000 --- a/client/docs/types/index.CreateAvalancheClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateAvalancheClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias CreateAvalancheClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                    CreateAvalancheClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.CreateAvalancheCoreClientErrorType.html b/client/docs/types/index.CreateAvalancheCoreClientErrorType.html deleted file mode 100644 index 487a08f0..00000000 --- a/client/docs/types/index.CreateAvalancheCoreClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateAvalancheCoreClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias CreateAvalancheCoreClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                      CreateAvalancheCoreClientErrorType: CreateAvalancheBaseClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.CreateAvalancheWalletClientErrorType.html b/client/docs/types/index.CreateAvalancheWalletClientErrorType.html deleted file mode 100644 index 4d58ee0b..00000000 --- a/client/docs/types/index.CreateAvalancheWalletClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateAvalancheWalletClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias CreateAvalancheWalletClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                        CreateAvalancheWalletClientErrorType: CreatePublicClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.CreateAvalancheWalletCoreClientErrorType.html b/client/docs/types/index.CreateAvalancheWalletCoreClientErrorType.html deleted file mode 100644 index 8ace7757..00000000 --- a/client/docs/types/index.CreateAvalancheWalletCoreClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateAvalancheWalletCoreClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias CreateAvalancheWalletCoreClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                          CreateAvalancheWalletCoreClientErrorType: CreatePublicClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.CreateCChainClientErrorType.html b/client/docs/types/index.CreateCChainClientErrorType.html deleted file mode 100644 index 9ad1104b..00000000 --- a/client/docs/types/index.CreateCChainClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateCChainClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias CreateCChainClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                            CreateCChainClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.CreateHealthApiClientErrorType.html b/client/docs/types/index.CreateHealthApiClientErrorType.html deleted file mode 100644 index 4206fad8..00000000 --- a/client/docs/types/index.CreateHealthApiClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateHealthApiClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias CreateHealthApiClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                              CreateHealthApiClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.CreateIndexApiClientErrorType.html b/client/docs/types/index.CreateIndexApiClientErrorType.html deleted file mode 100644 index 2506ae98..00000000 --- a/client/docs/types/index.CreateIndexApiClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateIndexApiClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias CreateIndexApiClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                CreateIndexApiClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.CreateInfoApiClientErrorType.html b/client/docs/types/index.CreateInfoApiClientErrorType.html deleted file mode 100644 index 5affb5cc..00000000 --- a/client/docs/types/index.CreateInfoApiClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateInfoApiClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias CreateInfoApiClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                  CreateInfoApiClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.CreatePChainClientErrorType.html b/client/docs/types/index.CreatePChainClientErrorType.html deleted file mode 100644 index ba4c5ee4..00000000 --- a/client/docs/types/index.CreatePChainClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreatePChainClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias CreatePChainClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                    CreatePChainClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.CreateXChainClientErrorType.html b/client/docs/types/index.CreateXChainClientErrorType.html deleted file mode 100644 index f2382ab5..00000000 --- a/client/docs/types/index.CreateXChainClientErrorType.html +++ /dev/null @@ -1 +0,0 @@ -CreateXChainClientErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias CreateXChainClientErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                      CreateXChainClientErrorType: CreateAvalancheCoreClientErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.Erc20Actions.html b/client/docs/types/index.Erc20Actions.html deleted file mode 100644 index 3069c626..00000000 --- a/client/docs/types/index.Erc20Actions.html +++ /dev/null @@ -1,5 +0,0 @@ -Erc20Actions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias Erc20Actions

                                                                                                                                                                                                                                                                                                                                                                                                                                        type Erc20Actions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                            deploy: (args: DeployErc20Parameters) => Promise<DeployErc20ReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                            getDecimals: (args: GetErc20DecimalsParameters) => Promise<GetErc20DecimalsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                            getName: (args: GetErc20NameParameters) => Promise<GetErc20NameReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                            getSymbol: (args: GetErc20SymbolParameters) => Promise<GetErc20SymbolReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                        deploy: (args: DeployErc20Parameters) => Promise<DeployErc20ReturnType>
                                                                                                                                                                                                                                                                                                                                                                                                                                        getDecimals: (args: GetErc20DecimalsParameters) => Promise<GetErc20DecimalsReturnType>
                                                                                                                                                                                                                                                                                                                                                                                                                                        getName: (args: GetErc20NameParameters) => Promise<GetErc20NameReturnType>
                                                                                                                                                                                                                                                                                                                                                                                                                                        getSymbol: (args: GetErc20SymbolParameters) => Promise<GetErc20SymbolReturnType>
                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.HealthAPIActions.html b/client/docs/types/index.HealthAPIActions.html deleted file mode 100644 index c94214a9..00000000 --- a/client/docs/types/index.HealthAPIActions.html +++ /dev/null @@ -1,33 +0,0 @@ -HealthAPIActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias HealthAPIActions

                                                                                                                                                                                                                                                                                                                                                                                                                                          type HealthAPIActions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                              health: (args: HealthParameters) => Promise<HealthReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                              liveness: () => Promise<LivenessReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                              readiness: (args: ReadinessParameters) => Promise<ReadinessReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                          health: (args: HealthParameters) => Promise<HealthReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns the last set of health check results for the node. -This includes checks for all chains, network, database, and other components.

                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                          const healthStatus = await client.health.health({
                                                                                                                                                                                                                                                                                                                                                                                                                                          tags: ["11111111111111111111111111111111LpoYY", "29uVeLPJB1eQJkzRemU8g8wZDw5uJRqpab5U2mX9euieVwiEbL"]
                                                                                                                                                                                                                                                                                                                                                                                                                                          })
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          liveness: () => Promise<LivenessReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns a simple health check indicating if the node is alive and can handle requests. -This is a lightweight check that always returns healthy if the endpoint is available.

                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                          })
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          readiness: (args: ReadinessParameters) => Promise<ReadinessReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns the last evaluation of the startup health check results. -This indicates if the node has finished initializing and is ready to handle requests.

                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                          const readinessStatus = await client.health.readiness({
                                                                                                                                                                                                                                                                                                                                                                                                                                          tags: ["11111111111111111111111111111111LpoYY"]
                                                                                                                                                                                                                                                                                                                                                                                                                                          })
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.HealthApiClient.html b/client/docs/types/index.HealthApiClient.html deleted file mode 100644 index eb7ca5ef..00000000 --- a/client/docs/types/index.HealthApiClient.html +++ /dev/null @@ -1 +0,0 @@ -HealthApiClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias HealthApiClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                                                                            HealthApiClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : HealthRpcSchema, HealthAPIActions>>

                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                            • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                            • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                            • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                            • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.HealthApiClientConfig.html b/client/docs/types/index.HealthApiClientConfig.html deleted file mode 100644 index e24654d4..00000000 --- a/client/docs/types/index.HealthApiClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -HealthApiClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias HealthApiClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                                                              HealthApiClientConfig: Prettify<AvalancheClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>>

                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                              • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                              • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                              • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                              • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                              • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.HealthRpcSchema.html b/client/docs/types/index.HealthRpcSchema.html deleted file mode 100644 index 5a0cb189..00000000 --- a/client/docs/types/index.HealthRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -HealthRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias HealthRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                                                                HealthRpcSchema: RpcSchemaOverride & HealthMethods

                                                                                                                                                                                                                                                                                                                                                                                                                                                The RPC schema for the Health methods.

                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.IndexAPIActions.html b/client/docs/types/index.IndexAPIActions.html deleted file mode 100644 index 9b025025..00000000 --- a/client/docs/types/index.IndexAPIActions.html +++ /dev/null @@ -1,61 +0,0 @@ -IndexAPIActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias IndexAPIActions

                                                                                                                                                                                                                                                                                                                                                                                                                                                  type IndexAPIActions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                      getContainerByID: (args: GetContainerByIDParameters) => Promise<GetContainerByIDReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      getContainerByIndex: (args: GetContainerByIndexParameters) => Promise<GetContainerByIndexReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      getContainerRange: (args: GetContainerRangeParameters) => Promise<GetContainerRangeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      getIndex: (args: GetIndexParameters) => Promise<GetIndexReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      getLastAccepted: (args: GetLastAcceptedParameters) => Promise<GetLastAcceptedReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      isAccepted: (args: IsAcceptedParameters) => Promise<IsAcceptedReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                  getContainerByID: (args: GetContainerByIDParameters) => Promise<GetContainerByIDReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const container = await client.indexPChainBlock.getContainerByID({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: "6fXf5hncR8LXvwtM8iezFQBpK5cubV6y1dWgpJCcNyzGB1EzY",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  getContainerByIndex: (args: GetContainerByIndexParameters) => Promise<GetContainerByIndexReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const container = await client.indexPChainBlock.getContainerByIndex({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  index: 1,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  getContainerRange: (args: GetContainerRangeParameters) => Promise<GetContainerRangeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get a range of containers by their indices.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const containers = await client.indexPChainBlock.getContainerRange({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  startIndex: 0,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  endIndex: 10,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  getIndex: (args: GetIndexParameters) => Promise<GetIndexReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the index of a container by its ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const index = await client.indexPChainBlock.getIndex({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: "6fXf5hncR8LXvwtM8iezFQBpK5cubV6y1dWgpJCcNyzGB1EzY",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  getLastAccepted: (args: GetLastAcceptedParameters) => Promise<GetLastAcceptedReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const lastAccepted = await client.indexPChainBlock.getLastAccepted({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  isAccepted: (args: IsAcceptedParameters) => Promise<IsAcceptedReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                  const isAccepted = await client.indexPChainBlock.isAccepted({
                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: "6fXf5hncR8LXvwtM8iezFQBpK5cubV6y1dWgpJCcNyzGB1EzY",
                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.IndexApiClient.html b/client/docs/types/index.IndexApiClient.html deleted file mode 100644 index f0cc499d..00000000 --- a/client/docs/types/index.IndexApiClient.html +++ /dev/null @@ -1 +0,0 @@ -IndexApiClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias IndexApiClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                                                                                    IndexApiClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : IndexRpcSchema, IndexAPIActions>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.IndexApiClientConfig.html b/client/docs/types/index.IndexApiClientConfig.html deleted file mode 100644 index 3f0c4ec8..00000000 --- a/client/docs/types/index.IndexApiClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -IndexApiClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias IndexApiClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                                                                      IndexApiClientConfig: Prettify<AvalancheClientConfig<transport, chain, accountOrAddress, rpcSchema, raw> & { clientType: (...) | (...) | (...) | (...) }>

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.IndexRpcSchema.html b/client/docs/types/index.IndexRpcSchema.html deleted file mode 100644 index 6f410dfa..00000000 --- a/client/docs/types/index.IndexRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -IndexRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias IndexRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                                                                        IndexRpcSchema: RpcSchemaOverride & IndexMethods

                                                                                                                                                                                                                                                                                                                                                                                                                                                        The RPC schema for the Index methods.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.InfoAPIActions.html b/client/docs/types/index.InfoAPIActions.html deleted file mode 100644 index 764c219e..00000000 --- a/client/docs/types/index.InfoAPIActions.html +++ /dev/null @@ -1,124 +0,0 @@ -InfoAPIActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias InfoAPIActions

                                                                                                                                                                                                                                                                                                                                                                                                                                                          type InfoAPIActions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              acps: () => Promise<AcpsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getBlockchainID: (args: GetBlockchainIDParameters) => Promise<GetBlockchainIDReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getNetworkID: () => Promise<GetNetworkIDReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getNetworkName: () => Promise<GetNetworkNameReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getNodeID: () => Promise<GetNodeIDReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getNodeIP: () => Promise<GetNodeIPReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getNodeVersion: () => Promise<GetNodeVersionReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getTxFee: () => Promise<GetTxFeeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              getVMs: () => Promise<GetVMsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              isBootstrapped: (args: IsBootstrappedParameters) => Promise<IsBootstrappedReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              peers: (args: PeersParameters) => Promise<PeersReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              upgrades: () => Promise<UpgradesReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              uptime: () => Promise<UptimeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                          acps: () => Promise<AcpsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns peer preferences for Avalanche Community Proposals (ACPs).

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const acpPreferences = await client.info.acps() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getBlockchainID: (args: GetBlockchainIDParameters) => Promise<GetBlockchainIDReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Given a blockchain's alias, get its ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const blockchainID = await client.info.getBlockchainID({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          alias: "X"
                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getNetworkID: () => Promise<GetNetworkIDReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the ID of the network this node is participating in. -Network ID of 1 = Mainnet, Network ID of 5 = Fuji (testnet).

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const networkID = await client.info.getNetworkID() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getNetworkName: () => Promise<GetNetworkNameReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the name of the network this node is participating in.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const networkName = await client.info.getNetworkName() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getNodeID: () => Promise<GetNodeIDReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the ID, the BLS key, and the proof of possession of this node. -Note: This endpoint is only available on specific nodes, not on public servers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const nodeInfo = await client.info.getNodeID() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getNodeIP: () => Promise<GetNodeIPReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the IP address of this node.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const nodeIP = await client.info.getNodeIP() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getNodeVersion: () => Promise<GetNodeVersionReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const nodeVersion = await client.info.getNodeVersion() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getTxFee: () => Promise<GetTxFeeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the transaction fee for this node.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const txFee = await client.info.getTxFee() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          getVMs: () => Promise<GetVMsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the virtual machines (VMs) this node is running.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const vms = await client.info.getVMs() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          isBootstrapped: (args: IsBootstrappedParameters) => Promise<IsBootstrappedReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Check whether a given chain is done bootstrapping.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const isBootstrapped = await client.info.isBootstrapped({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: "X"
                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          peers: (args: PeersParameters) => Promise<PeersReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get a description of peer connections.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const peers = await client.info.peers({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          nodeIDs: []
                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          upgrades: () => Promise<UpgradesReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns the upgrade history and configuration of the network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const upgrades = await client.info.upgrades() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          uptime: () => Promise<UptimeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns the network's observed uptime of this node. -This is the only reliable source of data for your node's uptime.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                          const uptime = await client.info.uptime() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.InfoApiClient.html b/client/docs/types/index.InfoApiClient.html deleted file mode 100644 index 4ce4a762..00000000 --- a/client/docs/types/index.InfoApiClient.html +++ /dev/null @@ -1 +0,0 @@ -InfoApiClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias InfoApiClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                                                                                            InfoApiClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : InfoRpcSchema, InfoAPIActions>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                            • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.InfoApiClientConfig.html b/client/docs/types/index.InfoApiClientConfig.html deleted file mode 100644 index 3c3c6cfb..00000000 --- a/client/docs/types/index.InfoApiClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -InfoApiClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias InfoApiClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.InfoRpcSchema.html b/client/docs/types/index.InfoRpcSchema.html deleted file mode 100644 index 90ed9f7d..00000000 --- a/client/docs/types/index.InfoRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -InfoRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias InfoRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                                                                                InfoRpcSchema: RpcSchemaOverride & InfoMethods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                The RPC schema for the Info methods.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/index.PChainActions.html b/client/docs/types/index.PChainActions.html deleted file mode 100644 index 7b2a85bd..00000000 --- a/client/docs/types/index.PChainActions.html +++ /dev/null @@ -1,275 +0,0 @@ -PChainActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PChainActions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PChainActions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getBlock: (args: GetBlockParameters) => Promise<GetBlockReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<GetBlockByHeightReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getBlockchains: () => Promise<GetBlockchainsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getBlockchainStatus: (args: GetBlockchainStatusParameters) => Promise<GetBlockchainStatusReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getCurrentSupply: (args: GetCurrentSupplyParameters) => Promise<GetCurrentSupplyReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getCurrentValidators: (args: GetCurrentValidatorsParameters) => Promise<GetCurrentValidatorsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getFeeConfig: () => Promise<GetFeeConfigReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getFeeState: () => Promise<GetFeeStateReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getHeight: () => Promise<GetHeightReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getL1Validator: (args: GetL1ValidatorParameters) => Promise<GetL1ValidatorReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getMinStake: (args: GetMinStakeParameters) => Promise<GetMinStakeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getProposedHeight: () => Promise<GetProposedHeightReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getRewardUTXOs: (args: GetRewardUTXOsParameters) => Promise<GetRewardUTXOsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getStake: (args: GetStakeParameters) => Promise<GetStakeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getStakingAssetID: (args: GetStakingAssetIDParameters) => Promise<GetStakingAssetIDReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getSubnet: (args: GetSubnetParameters) => Promise<GetSubnetReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getSubnets: (args: GetSubnetsParameters) => Promise<GetSubnetsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getTimestamp: () => Promise<GetTimestampReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getTotalStake: (args: GetTotalStakeParameters) => Promise<GetTotalStakeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getTx: (args: GetTxParameters) => Promise<GetTxReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getValidatorsAt: (args: GetValidatorsAtParameters) => Promise<GetValidatorsAtReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sampleValidators: (args: SampleValidatorsParameters) => Promise<SampleValidatorsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      validatedBy: (args: ValidatedByParameters) => Promise<ValidatedByReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      validates: (args: ValidatesParameters) => Promise<ValidatesReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the balance of AVAX controlled by a given address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const balance = await client.pChain.getBalance({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getBlock: (args: GetBlockParameters) => Promise<GetBlockReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const block = await client.pChain.getBlock({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  blockID: "d7WYmb8VeZNHsny3EJCwMm6QA37s1EHwMxw1Y71V3FqPZ5EFG",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<GetBlockByHeightReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const block = await client.pChain.getBlockByHeight({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: 1000001,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getBlockchains: () => Promise<GetBlockchainsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get all the blockchains that exist (excluding the P-Chain).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const blockchains = await client.pChain.getBlockchains() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getBlockchainStatus: (args: GetBlockchainStatusParameters) => Promise<GetBlockchainStatusReturnType>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const status = await client.pChain.getBlockchainStatus({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  blockchainID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getCurrentSupply: (args: GetCurrentSupplyParameters) => Promise<GetCurrentSupplyReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const supply = await client.pChain.getCurrentSupply({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getCurrentValidators: (args: GetCurrentValidatorsParameters) => Promise<GetCurrentValidatorsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the current validators of the specified Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const validators = await client.pChain.getCurrentValidators({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getFeeConfig: () => Promise<GetFeeConfigReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the fee configuration for the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const feeConfig = await client.pChain.getFeeConfig() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getFeeState: () => Promise<GetFeeStateReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the current fee state of the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const feeState = await client.pChain.getFeeState() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getHeight: () => Promise<GetHeightReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the height of the last accepted block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const height = await client.pChain.getHeight() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getL1Validator: (args: GetL1ValidatorParameters) => Promise<GetL1ValidatorReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const validator = await client.pChain.getL1Validator({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nodeID: "NodeID-111111111111111111111111111111111111111"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getMinStake: (args: GetMinStakeParameters) => Promise<GetMinStakeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the minimum stake amount for a subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const minStake = await client.pChain.getMinStake({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getProposedHeight: () => Promise<GetProposedHeightReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const proposedHeight = await client.pChain.getProposedHeight() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getRewardUTXOs: (args: GetRewardUTXOsParameters) => Promise<GetRewardUTXOsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const rewardUTXOs = await client.pChain.getRewardUTXOs({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txID: "11111111111111111111111111111111LpoYY",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getStake: (args: GetStakeParameters) => Promise<GetStakeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the stake amount for a set of addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const stake = await client.pChain.getStake({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getStakingAssetID: (args: GetStakingAssetIDParameters) => Promise<GetStakingAssetIDReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const stakingAssetID = await client.pChain.getStakingAssetID({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getSubnet: (args: GetSubnetParameters) => Promise<GetSubnetReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const subnet = await client.pChain.getSubnet({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getSubnets: (args: GetSubnetsParameters) => Promise<GetSubnetsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const subnets = await client.pChain.getSubnets() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getTimestamp: () => Promise<GetTimestampReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the current timestamp of the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const timestamp = await client.pChain.getTimestamp() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getTotalStake: (args: GetTotalStakeParameters) => Promise<GetTotalStakeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the total stake amount for a subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const totalStake = await client.pChain.getTotalStake({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getTx: (args: GetTxParameters) => Promise<GetTxReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const tx = await client.pChain.getTx({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txID: "11111111111111111111111111111111LpoYY",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const status = await client.pChain.getTxStatus({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const utxos = await client.pChain.getUTXOs({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: ["P-custom18jma8ppw3nhx5r4ap8clazz0dps7rv5u9xde7p"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sourceChain: "X"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getValidatorsAt: (args: GetValidatorsAtParameters) => Promise<GetValidatorsAtReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the validators at a specific height.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const validators = await client.pChain.getValidatorsAt({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: 1000001,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Issue a transaction to the Platform Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const txID = await client.pChain.issueTx({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sampleValidators: (args: SampleValidatorsParameters) => Promise<SampleValidatorsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Sample validators from the specified Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const validators = await client.pChain.sampleValidators({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  size: 2,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  validatedBy: (args: ValidatedByParameters) => Promise<ValidatedByReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the Subnet that validates a given blockchain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const subnetID = await client.pChain.validatedBy({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  blockchainID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  validates: (args: ValidatesParameters) => Promise<ValidatesReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Get the IDs of the blockchains a Subnet validates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  const blockchainIDs = await client.pChain.validates({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/index.PChainClient.html b/client/docs/types/index.PChainClient.html deleted file mode 100644 index 8feb6d3d..00000000 --- a/client/docs/types/index.PChainClient.html +++ /dev/null @@ -1 +0,0 @@ -PChainClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PChainClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PChainClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : PChainRpcSchema, PChainActions>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/index.PChainClientConfig.html b/client/docs/types/index.PChainClientConfig.html deleted file mode 100644 index b1b23195..00000000 --- a/client/docs/types/index.PChainClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -PChainClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PChainClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/index.PChainRpcSchema.html b/client/docs/types/index.PChainRpcSchema.html deleted file mode 100644 index 42faba52..00000000 --- a/client/docs/types/index.PChainRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -PChainRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PChainRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PChainRpcSchema: RpcSchemaOverride & PChainMethods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The RPC schema for the P-Chain methods.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/index.XChainActions.html b/client/docs/types/index.XChainActions.html deleted file mode 100644 index 49dafc8c..00000000 --- a/client/docs/types/index.XChainActions.html +++ /dev/null @@ -1,119 +0,0 @@ -XChainActions | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias XChainActions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type XChainActions = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              buildGenesis: (args: BuildGenesisParameters) => Promise<BuildGenesisReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getAllBalances: (args: GetAllBalancesParameters) => Promise<GetAllBalancesReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getAssetDescription: (args: GetAssetDescriptionParameters) => Promise<GetAssetDescriptionReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getBlock: (args: GetBlockParameters) => Promise<GetBlockReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<GetBlockByHeightReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getHeight: () => Promise<GetHeightReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getTx: (args: GetTxParameters) => Promise<GetTxReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getTxFee: () => Promise<GetTxFeeReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          buildGenesis: (args: BuildGenesisParameters) => Promise<BuildGenesisReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Given a JSON representation of this Virtual Machine's genesis state, create the byte representation of that state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const genesis = await client.xChain.buildGenesis({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          networkID: 16,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          genesisData: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          asset1: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: "myFixedCapAsset",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          symbol: "MFCA",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          initialState: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fixedCap: [
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          amount: 100000,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          address: "avax13ery2kvdrkd2nkquvs892gl8hg7mq4a6ufnrn6"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getAllBalances: (args: GetAllBalancesParameters) => Promise<GetAllBalancesReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the balances of all assets controlled by given addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const balances = await client.xChain.getAllBalances({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getAssetDescription: (args: GetAssetDescriptionParameters) => Promise<GetAssetDescriptionReturnType>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const asset = await client.xChain.getAssetDescription({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getBalance: (args: GetBalanceParameters) => Promise<GetBalanceReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the balance of an asset controlled by given addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const balance = await client.xChain.getBalance({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetID: "FvwEAhmxKfeiG8SnEvq42hc6whRyY3EFYAvebMqDNDGCgxN5Z"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getBlock: (args: GetBlockParameters) => Promise<GetBlockReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const block = await client.xChain.getBlock({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          blockID: "d7WYmb8VeZNHsny3EJCwMm6QA37s1EHwMxw1Y71V3FqPZ5EFG",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getBlockByHeight: (args: GetBlockByHeightParameters) => Promise<GetBlockByHeightReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const block = await client.xChain.getBlockByHeight({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          height: 1000001,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getHeight: () => Promise<GetHeightReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the height of the last accepted block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const height = await client.xChain.getHeight() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getTx: (args: GetTxParameters) => Promise<GetTxReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const tx = await client.xChain.getTx({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          txID: "11111111111111111111111111111111LpoYY",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getTxFee: () => Promise<GetTxFeeReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the transaction fee for this node.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const txFee = await client.xChain.getTxFee() -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getTxStatus: (args: GetTxStatusParameters) => Promise<GetTxStatusReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const status = await client.xChain.getTxStatus({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          txID: "11111111111111111111111111111111LpoYY"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getUTXOs: (args: GetUTXOsParameters) => Promise<GetUTXOsReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Get the UTXOs for a set of addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const utxos = await client.xChain.getUTXOs({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addresses: ["X-avax18jma8ppw3nhx5r4ap8clazz0dps7rv5ukulre5"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sourceChain: "P"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          issueTx: (args: IssueTxParameters) => Promise<IssueTxReturnType>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Send a signed transaction to the network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { createAvalancheClient} from '@avalanche-sdk/client'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          import { avalanche } from '@avalanche-sdk/client/chains'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const client = createAvalancheClient({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: avalanche,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transport: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: "http",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          },
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          })

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const txID = await client.xChain.issueTx({
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: "0x00000009de31b4d8b22991d51aa6aa1fc733f23a851a8c9400000000000186a0000000005f041280000000005f9ca900000030390000000000000001fceda8f90fcb5d30614b99d79fc4baa29307762668f16eb0259a57c2d3b78c875c86ec2045792d4df2d926c40f829196e0bb97ee697af71f5b0a966dabff749634c8b729855e937715b0e44303fd1014daedc752006011b730",
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/index.XChainClient.html b/client/docs/types/index.XChainClient.html deleted file mode 100644 index 4df5372c..00000000 --- a/client/docs/types/index.XChainClient.html +++ /dev/null @@ -1 +0,0 @@ -XChainClient | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias XChainClient<transport, chain, accountOrAddress, rpcSchema>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            XChainClient: Prettify<AvalancheCoreClient<transport, chain, accountOrAddress, rpcSchema extends RpcSchema ? [(...), (...)] : XChainRpcSchema, XChainActions>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • transport extends Transport = Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • accountOrAddress extends Account | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/index.XChainClientConfig.html b/client/docs/types/index.XChainClientConfig.html deleted file mode 100644 index 1e65c022..00000000 --- a/client/docs/types/index.XChainClientConfig.html +++ /dev/null @@ -1 +0,0 @@ -XChainClientConfig | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias XChainClientConfig<transport, chain, accountOrAddress, rpcSchema, raw>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • transport extends Transport
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • chain extends Chain | undefined = Chain | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • accountOrAddress extends Account | Address | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • rpcSchema extends RpcSchema | undefined = undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • raw extends boolean = false
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/index.XChainRpcSchema.html b/client/docs/types/index.XChainRpcSchema.html deleted file mode 100644 index 70f6cd74..00000000 --- a/client/docs/types/index.XChainRpcSchema.html +++ /dev/null @@ -1,3 +0,0 @@ -XChainRpcSchema | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias XChainRpcSchema

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                XChainRpcSchema: RpcSchemaOverride & XChainMethods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The RPC schema for the X-Chain methods.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_admin.AliasChainErrorType.html b/client/docs/types/methods_admin.AliasChainErrorType.html deleted file mode 100644 index a971486f..00000000 --- a/client/docs/types/methods_admin.AliasChainErrorType.html +++ /dev/null @@ -1 +0,0 @@ -AliasChainErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias AliasChainErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AliasChainErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_admin.AliasChainParameters.html b/client/docs/types/methods_admin.AliasChainParameters.html deleted file mode 100644 index 68026920..00000000 --- a/client/docs/types/methods_admin.AliasChainParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -AliasChainParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias AliasChainParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters for the admin.aliasChain method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type AliasChainParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        alias: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chain: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    alias: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The alias to assign to the blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    chain: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The blockchain ID to alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_admin.AliasErrorType.html b/client/docs/types/methods_admin.AliasErrorType.html deleted file mode 100644 index f8353209..00000000 --- a/client/docs/types/methods_admin.AliasErrorType.html +++ /dev/null @@ -1 +0,0 @@ -AliasErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias AliasErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      AliasErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_admin.AliasParameters.html b/client/docs/types/methods_admin.AliasParameters.html deleted file mode 100644 index e854f783..00000000 --- a/client/docs/types/methods_admin.AliasParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -AliasParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias AliasParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the admin.alias method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type AliasParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            alias: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            endpoint: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        alias: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The alias to assign to the endpoint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        endpoint: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The endpoint to alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_admin.GetChainAliasesErrorType.html b/client/docs/types/methods_admin.GetChainAliasesErrorType.html deleted file mode 100644 index 61b334c9..00000000 --- a/client/docs/types/methods_admin.GetChainAliasesErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetChainAliasesErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetChainAliasesErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetChainAliasesErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_admin.GetChainAliasesParameters.html b/client/docs/types/methods_admin.GetChainAliasesParameters.html deleted file mode 100644 index a95781d2..00000000 --- a/client/docs/types/methods_admin.GetChainAliasesParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetChainAliasesParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetChainAliasesParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters for the admin.getChainAliases method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetChainAliasesParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                chain: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chain: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The blockchain ID to get aliases for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_admin.GetChainAliasesReturnType.html b/client/docs/types/methods_admin.GetChainAliasesReturnType.html deleted file mode 100644 index 060b8473..00000000 --- a/client/docs/types/methods_admin.GetChainAliasesReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetChainAliasesReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetChainAliasesReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the admin.getChainAliases method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetChainAliasesReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  aliases: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aliases: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Array of aliases for the specified blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_admin.GetLoggerLevelErrorType.html b/client/docs/types/methods_admin.GetLoggerLevelErrorType.html deleted file mode 100644 index 131a3baf..00000000 --- a/client/docs/types/methods_admin.GetLoggerLevelErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetLoggerLevelErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetLoggerLevelErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetLoggerLevelErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_admin.GetLoggerLevelParameters.html b/client/docs/types/methods_admin.GetLoggerLevelParameters.html deleted file mode 100644 index a8c34068..00000000 --- a/client/docs/types/methods_admin.GetLoggerLevelParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetLoggerLevelParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetLoggerLevelParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters for the admin.getLoggerLevel method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetLoggerLevelParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      loggerName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  loggerName?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the logger to get levels for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_admin.GetLoggerLevelReturnType.html b/client/docs/types/methods_admin.GetLoggerLevelReturnType.html deleted file mode 100644 index ec95cfd2..00000000 --- a/client/docs/types/methods_admin.GetLoggerLevelReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetLoggerLevelReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetLoggerLevelReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the admin.getLoggerLevel method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetLoggerLevelReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        loggerLevels: { [loggerName: string]: { displayLevel: string; logLevel: string } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    loggerLevels: { [loggerName: string]: { displayLevel: string; logLevel: string } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An object containing the log and display levels for each logger

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_admin.LoadVMsErrorType.html b/client/docs/types/methods_admin.LoadVMsErrorType.html deleted file mode 100644 index 5652b2b1..00000000 --- a/client/docs/types/methods_admin.LoadVMsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -LoadVMsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias LoadVMsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LoadVMsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_admin.LoadVMsReturnType.html b/client/docs/types/methods_admin.LoadVMsReturnType.html deleted file mode 100644 index 79f9ae07..00000000 --- a/client/docs/types/methods_admin.LoadVMsReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -LoadVMsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias LoadVMsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return type for the admin.loadVMs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type LoadVMsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            failedVMs: { [vmID: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            newVMs: { [vmID: string]: string[] };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        failedVMs: { [vmID: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Object containing any VMs that failed to load

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        newVMs: { [vmID: string]: string[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Object containing the newly loaded VMs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_admin.LockProfileErrorType.html b/client/docs/types/methods_admin.LockProfileErrorType.html deleted file mode 100644 index 1d523fde..00000000 --- a/client/docs/types/methods_admin.LockProfileErrorType.html +++ /dev/null @@ -1 +0,0 @@ -LockProfileErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias LockProfileErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          LockProfileErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_admin.MemoryProfileErrorType.html b/client/docs/types/methods_admin.MemoryProfileErrorType.html deleted file mode 100644 index 07085087..00000000 --- a/client/docs/types/methods_admin.MemoryProfileErrorType.html +++ /dev/null @@ -1 +0,0 @@ -MemoryProfileErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias MemoryProfileErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MemoryProfileErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_admin.SetLoggerLevelParameters.html b/client/docs/types/methods_admin.SetLoggerLevelParameters.html deleted file mode 100644 index 1784941d..00000000 --- a/client/docs/types/methods_admin.SetLoggerLevelParameters.html +++ /dev/null @@ -1,8 +0,0 @@ -SetLoggerLevelParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias SetLoggerLevelParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the admin.setLoggerLevel method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type SetLoggerLevelParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  displayLevel: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  loggerName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logLevel: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              displayLevel: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The display level to set (e.g. "DEBUG", "INFO", "WARN", "ERROR")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              loggerName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The name of the logger to set levels for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logLevel: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The log level to set (e.g. "DEBUG", "INFO", "WARN", "ERROR")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_admin.StartCPUProfilerErrorType.html b/client/docs/types/methods_admin.StartCPUProfilerErrorType.html deleted file mode 100644 index 9f7b4da3..00000000 --- a/client/docs/types/methods_admin.StartCPUProfilerErrorType.html +++ /dev/null @@ -1 +0,0 @@ -StartCPUProfilerErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias StartCPUProfilerErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                StartCPUProfilerErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_admin.StopCPUProfilerErrorType.html b/client/docs/types/methods_admin.StopCPUProfilerErrorType.html deleted file mode 100644 index d6f3d78a..00000000 --- a/client/docs/types/methods_admin.StopCPUProfilerErrorType.html +++ /dev/null @@ -1 +0,0 @@ -StopCPUProfilerErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias StopCPUProfilerErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StopCPUProfilerErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_cChain.CChainAtomicTxStatus.html b/client/docs/types/methods_cChain.CChainAtomicTxStatus.html deleted file mode 100644 index eb01a7ee..00000000 --- a/client/docs/types/methods_cChain.CChainAtomicTxStatus.html +++ /dev/null @@ -1,8 +0,0 @@ -CChainAtomicTxStatus | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias CChainAtomicTxStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CChainAtomicTxStatus: "Accepted" | "Processing" | "Dropped" | "Unknown"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The status of an atomic transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Accepted: The transaction is (or will be) accepted by every node. Check the blockHeight property
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Processing: The transaction is being voted on by this node
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Dropped: The transaction was dropped by this node because it thought the transaction invalid
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Unknown: The transaction hasn't been seen by this node
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_cChain.GetAtomicTxErrorType.html b/client/docs/types/methods_cChain.GetAtomicTxErrorType.html deleted file mode 100644 index 82ec8b13..00000000 --- a/client/docs/types/methods_cChain.GetAtomicTxErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetAtomicTxErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetAtomicTxErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetAtomicTxErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_cChain.GetAtomicTxParameters.html b/client/docs/types/methods_cChain.GetAtomicTxParameters.html deleted file mode 100644 index 5b9ed930..00000000 --- a/client/docs/types/methods_cChain.GetAtomicTxParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetAtomicTxParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetAtomicTxParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The parameters for the avax.getAtomicTx method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ID of the atomic transaction. It should be in cb58 format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The encoding of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetAtomicTxParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding?: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding?: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        txID: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_cChain.GetAtomicTxReturnType.html b/client/docs/types/methods_cChain.GetAtomicTxReturnType.html deleted file mode 100644 index 75a2ad45..00000000 --- a/client/docs/types/methods_cChain.GetAtomicTxReturnType.html +++ /dev/null @@ -1,8 +0,0 @@ -GetAtomicTxReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetAtomicTxReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The return type for the avax.getAtomicTx method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The atomic transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The height of the block which the transaction was included in.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The encoding of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetAtomicTxReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              blockHeight: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          blockHeight: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_cChain.GetAtomicTxStatusErrorType.html b/client/docs/types/methods_cChain.GetAtomicTxStatusErrorType.html deleted file mode 100644 index 002bebe0..00000000 --- a/client/docs/types/methods_cChain.GetAtomicTxStatusErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetAtomicTxStatusErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetAtomicTxStatusErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetAtomicTxStatusErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_cChain.GetAtomicTxStatusParameters.html b/client/docs/types/methods_cChain.GetAtomicTxStatusParameters.html deleted file mode 100644 index e2991824..00000000 --- a/client/docs/types/methods_cChain.GetAtomicTxStatusParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetAtomicTxStatusParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetAtomicTxStatusParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The parameters for the avax.getAtomicTxStatus method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ID of the atomic transaction. It should be in cb58 format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetAtomicTxStatusParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              txID: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_cChain.GetAtomicTxStatusReturnType.html b/client/docs/types/methods_cChain.GetAtomicTxStatusReturnType.html deleted file mode 100644 index 2264c50f..00000000 --- a/client/docs/types/methods_cChain.GetAtomicTxStatusReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetAtomicTxStatusReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetAtomicTxStatusReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The return type for the avax.getAtomicTxStatus method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The status of the atomic transaction. CChainAtomicTxStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The height of the block which the transaction was included in.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetAtomicTxStatusReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    blockHeight: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    status: CChainAtomicTxStatus;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                blockHeight: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_cChain.GetUTXOsErrorType.html b/client/docs/types/methods_cChain.GetUTXOsErrorType.html deleted file mode 100644 index 461e0f39..00000000 --- a/client/docs/types/methods_cChain.GetUTXOsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetUTXOsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetUTXOsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetUTXOsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_cChain.GetUTXOsParameters.html b/client/docs/types/methods_cChain.GetUTXOsParameters.html deleted file mode 100644 index c29d4bd1..00000000 --- a/client/docs/types/methods_cChain.GetUTXOsParameters.html +++ /dev/null @@ -1,14 +0,0 @@ -GetUTXOsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetUTXOsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The parameters for the avax.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The addresses to get the UTXOs for. Each returned UTXO will reference at least one address in this list.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The maximum number of UTXOs to return. If omitted or greater than 1024, it is set to 1024.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The starting index for pagination. If omitted, will fetch all UTXOs up to limit. When using pagination: -- UTXOs are not guaranteed to be unique across multiple calls -- Consistency is not guaranteed across multiple calls as the UTXO set may change between calls

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The source chain of the UTXOs to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The encoding format for the returned UTXOs. Can only be "hex" when a value is provided.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetUTXOsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding?: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        limit?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sourceChain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        startIndex?: { address: string; utxo: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    addresses: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    encoding?: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    limit?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sourceChain?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    startIndex?: { address: string; utxo: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_cChain.GetUTXOsReturnType.html b/client/docs/types/methods_cChain.GetUTXOsReturnType.html deleted file mode 100644 index b2041211..00000000 --- a/client/docs/types/methods_cChain.GetUTXOsReturnType.html +++ /dev/null @@ -1,9 +0,0 @@ -GetUTXOsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The return type for the avax.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The number of UTXOs fetched in this response.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The list of UTXOs fetched, where each UTXO references at least one address from the input addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The end index of the UTXOs fetched. Used for pagination - to get the next set of UTXOs, -use this value as startIndex in the next call.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetUTXOsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          endIndex: { address: string; utxo: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          numFetched: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          utxos: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      endIndex: { address: string; utxo: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      numFetched: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      utxos: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_cChain.IssueTxErrorType.html b/client/docs/types/methods_cChain.IssueTxErrorType.html deleted file mode 100644 index 9291506d..00000000 --- a/client/docs/types/methods_cChain.IssueTxErrorType.html +++ /dev/null @@ -1 +0,0 @@ -IssueTxErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias IssueTxErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IssueTxErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_cChain.IssueTxParameters.html b/client/docs/types/methods_cChain.IssueTxParameters.html deleted file mode 100644 index 797f273b..00000000 --- a/client/docs/types/methods_cChain.IssueTxParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -IssueTxParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias IssueTxParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The parameters for the platform.issueTx method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The transaction to issue.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The encoding of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type IssueTxParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_cChain.IssueTxReturnType.html b/client/docs/types/methods_cChain.IssueTxReturnType.html deleted file mode 100644 index 77bd06dc..00000000 --- a/client/docs/types/methods_cChain.IssueTxReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -IssueTxReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias IssueTxReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The return type for the platform.issueTx method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The ID of the issued transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type IssueTxReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            txID: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_health.HealthErrorType.html b/client/docs/types/methods_health.HealthErrorType.html deleted file mode 100644 index f98af371..00000000 --- a/client/docs/types/methods_health.HealthErrorType.html +++ /dev/null @@ -1 +0,0 @@ -HealthErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias HealthErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              HealthErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_health.HealthParameters.html b/client/docs/types/methods_health.HealthParameters.html deleted file mode 100644 index 6298b304..00000000 --- a/client/docs/types/methods_health.HealthParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -HealthParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias HealthParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters for the health.health method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type HealthParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    tags?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tags?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional array of tags to filter health checks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_health.HealthReturnType.html b/client/docs/types/methods_health.HealthReturnType.html deleted file mode 100644 index 8acc8d5a..00000000 --- a/client/docs/types/methods_health.HealthReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -HealthReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias HealthReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the health.health method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type HealthReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      checks: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bootstrapped: { duration: number; message: (...)[]; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          C: ChainHealthCheck;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          database: { duration: number; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diskspace: { duration: number; message: { availableDiskBytes: ... }; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          network: { duration: number; message: { connectedPeers: ...; sendFailRate: ...; timeSinceLastMsgReceived: ...; timeSinceLastMsgSent: ... }; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          P: ChainHealthCheck;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          router: { duration: number; message: { longestRunningRequest: ...; outstandingRequests: ... }; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          X: ChainHealthCheck;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      healthy: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  checks: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bootstrapped: { duration: number; message: (...)[]; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      C: ChainHealthCheck;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      database: { duration: number; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diskspace: { duration: number; message: { availableDiskBytes: ... }; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      network: { duration: number; message: { connectedPeers: ...; sendFailRate: ...; timeSinceLastMsgReceived: ...; timeSinceLastMsgSent: ... }; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P: ChainHealthCheck;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      router: { duration: number; message: { longestRunningRequest: ...; outstandingRequests: ... }; timestamp: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      X: ChainHealthCheck;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Object containing health check results for each component

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  healthy: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Overall health status of the node

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_health.LivenessErrorType.html b/client/docs/types/methods_health.LivenessErrorType.html deleted file mode 100644 index edfd2d4d..00000000 --- a/client/docs/types/methods_health.LivenessErrorType.html +++ /dev/null @@ -1 +0,0 @@ -LivenessErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias LivenessErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LivenessErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_health.LivenessReturnType.html b/client/docs/types/methods_health.LivenessReturnType.html deleted file mode 100644 index 9d3cd401..00000000 --- a/client/docs/types/methods_health.LivenessReturnType.html +++ /dev/null @@ -1,5 +0,0 @@ -LivenessReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias LivenessReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the health.liveness method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type LivenessReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          checks: object;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          healthy: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      checks: object
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      healthy: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Indicates if the node is alive and can handle requests

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_health.ReadinessErrorType.html b/client/docs/types/methods_health.ReadinessErrorType.html deleted file mode 100644 index 9cabf76e..00000000 --- a/client/docs/types/methods_health.ReadinessErrorType.html +++ /dev/null @@ -1 +0,0 @@ -ReadinessErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias ReadinessErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ReadinessErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_health.ReadinessParameters.html b/client/docs/types/methods_health.ReadinessParameters.html deleted file mode 100644 index 655b97a4..00000000 --- a/client/docs/types/methods_health.ReadinessParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -ReadinessParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ReadinessParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters for the health.readiness method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type ReadinessParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tags?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tags?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional array of tags to filter readiness checks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_health.ReadinessReturnType.html b/client/docs/types/methods_health.ReadinessReturnType.html deleted file mode 100644 index 313a0ad8..00000000 --- a/client/docs/types/methods_health.ReadinessReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -ReadinessReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias ReadinessReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return type for the health.readiness method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type ReadinessReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                checks: { [key: string]: { healthy: boolean; message: { contiguousFailures: ...; duration: ...; timeOfFirstFailure: ...; timestamp: ... } } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                healthy: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            checks: { [key: string]: { healthy: boolean; message: { contiguousFailures: ...; duration: ...; timeOfFirstFailure: ...; timestamp: ... } } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Object containing readiness check results for each component

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            healthy: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Overall readiness status of the node

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_index.GetContainerByIDErrorType.html b/client/docs/types/methods_index.GetContainerByIDErrorType.html deleted file mode 100644 index 2508c48c..00000000 --- a/client/docs/types/methods_index.GetContainerByIDErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetContainerByIDErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetContainerByIDErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetContainerByIDErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_index.GetContainerByIDParameters.html b/client/docs/types/methods_index.GetContainerByIDParameters.html deleted file mode 100644 index 05a50522..00000000 --- a/client/docs/types/methods_index.GetContainerByIDParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetContainerByIDParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetContainerByIDParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters for the index.getContainerByID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetContainerByIDParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The encoding format for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The container's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_index.GetContainerByIDReturnType.html b/client/docs/types/methods_index.GetContainerByIDReturnType.html deleted file mode 100644 index 01075719..00000000 --- a/client/docs/types/methods_index.GetContainerByIDReturnType.html +++ /dev/null @@ -1,12 +0,0 @@ -GetContainerByIDReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetContainerByIDReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the index.getContainerByID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetContainerByIDReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bytes: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      index: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  bytes: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The byte representation of the container

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The encoding format used for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The container's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  index: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  How many containers were accepted in this index before this one

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The time at which this node accepted the container

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_index.GetContainerByIndexErrorType.html b/client/docs/types/methods_index.GetContainerByIndexErrorType.html deleted file mode 100644 index 0837babd..00000000 --- a/client/docs/types/methods_index.GetContainerByIndexErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetContainerByIndexErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetContainerByIndexErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetContainerByIndexErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_index.GetContainerByIndexParameters.html b/client/docs/types/methods_index.GetContainerByIndexParameters.html deleted file mode 100644 index f96922c4..00000000 --- a/client/docs/types/methods_index.GetContainerByIndexParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetContainerByIndexParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetContainerByIndexParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters for the index.getContainerByIndex method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetContainerByIndexParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          index: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The encoding format for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      index: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The index of the container to retrieve. The first container accepted is at index 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_index.GetContainerByIndexReturnType.html b/client/docs/types/methods_index.GetContainerByIndexReturnType.html deleted file mode 100644 index daf5c712..00000000 --- a/client/docs/types/methods_index.GetContainerByIndexReturnType.html +++ /dev/null @@ -1,12 +0,0 @@ -GetContainerByIndexReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetContainerByIndexReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return type for the index.getContainerByIndex method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetContainerByIndexReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            bytes: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            index: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        bytes: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The byte representation of the container

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The encoding format used for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The container's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        index: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        How many containers were accepted in this index before this one

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The time at which this node accepted the container

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_index.GetContainerRangeErrorType.html b/client/docs/types/methods_index.GetContainerRangeErrorType.html deleted file mode 100644 index fc3c10f4..00000000 --- a/client/docs/types/methods_index.GetContainerRangeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetContainerRangeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetContainerRangeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetContainerRangeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_index.GetContainerRangeParameters.html b/client/docs/types/methods_index.GetContainerRangeParameters.html deleted file mode 100644 index fe3648dd..00000000 --- a/client/docs/types/methods_index.GetContainerRangeParameters.html +++ /dev/null @@ -1,8 +0,0 @@ -GetContainerRangeParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetContainerRangeParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters for the index.getContainerRange method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetContainerRangeParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                endIndex: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                startIndex: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The encoding format for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            endIndex: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The index of the last container to retrieve (inclusive)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            startIndex: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The index of the first container to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_index.GetContainerRangeReturnType.html b/client/docs/types/methods_index.GetContainerRangeReturnType.html deleted file mode 100644 index 5ec39280..00000000 --- a/client/docs/types/methods_index.GetContainerRangeReturnType.html +++ /dev/null @@ -1,11 +0,0 @@ -GetContainerRangeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetContainerRangeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the index.getContainerRange method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetContainerRangeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  containers: { bytes: string; encoding: "hex"; id: string; index: string; timestamp: string }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              containers: { bytes: string; encoding: "hex"; id: string; index: string; timestamp: string }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Array of container details, each containing:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • id: The container's ID
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • bytes: The byte representation of the container
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • timestamp: The time at which this node accepted the container
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • encoding: The encoding format used for the container data. Only "hex" is supported.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • index: How many containers were accepted in this index before this one
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_index.GetIndexErrorType.html b/client/docs/types/methods_index.GetIndexErrorType.html deleted file mode 100644 index 655cef55..00000000 --- a/client/docs/types/methods_index.GetIndexErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetIndexErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetIndexErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetIndexErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_index.GetIndexParameters.html b/client/docs/types/methods_index.GetIndexParameters.html deleted file mode 100644 index cf83b908..00000000 --- a/client/docs/types/methods_index.GetIndexParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetIndexParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetIndexParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters for the index.getIndex method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetIndexParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The encoding format for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The container's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_index.GetIndexReturnType.html b/client/docs/types/methods_index.GetIndexReturnType.html deleted file mode 100644 index 0d56d361..00000000 --- a/client/docs/types/methods_index.GetIndexReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetIndexReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetIndexReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the index.getIndex method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetIndexReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        index: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    index: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The index of the container. The first container accepted is at index 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_index.GetLastAcceptedErrorType.html b/client/docs/types/methods_index.GetLastAcceptedErrorType.html deleted file mode 100644 index 357498c5..00000000 --- a/client/docs/types/methods_index.GetLastAcceptedErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetLastAcceptedErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetLastAcceptedErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetLastAcceptedErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_index.GetLastAcceptedParameters.html b/client/docs/types/methods_index.GetLastAcceptedParameters.html deleted file mode 100644 index 576ed231..00000000 --- a/client/docs/types/methods_index.GetLastAcceptedParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetLastAcceptedParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetLastAcceptedParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the index.getLastAccepted method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetLastAcceptedParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The encoding format for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_index.GetLastAcceptedReturnType.html b/client/docs/types/methods_index.GetLastAcceptedReturnType.html deleted file mode 100644 index df3fd152..00000000 --- a/client/docs/types/methods_index.GetLastAcceptedReturnType.html +++ /dev/null @@ -1,12 +0,0 @@ -GetLastAcceptedReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetLastAcceptedReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the index.getLastAccepted method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetLastAcceptedReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              bytes: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              index: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          bytes: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The byte representation of the container

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The encoding format used for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The container's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          index: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          How many containers were accepted in this index before this one

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The time at which this node accepted the container

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_index.IsAcceptedErrorType.html b/client/docs/types/methods_index.IsAcceptedErrorType.html deleted file mode 100644 index 9fef507a..00000000 --- a/client/docs/types/methods_index.IsAcceptedErrorType.html +++ /dev/null @@ -1 +0,0 @@ -IsAcceptedErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias IsAcceptedErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            IsAcceptedErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_index.IsAcceptedParameters.html b/client/docs/types/methods_index.IsAcceptedParameters.html deleted file mode 100644 index a61b7e32..00000000 --- a/client/docs/types/methods_index.IsAcceptedParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -IsAcceptedParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias IsAcceptedParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the index.isAccepted method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type IsAcceptedParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The encoding format for the container data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The container's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_index.IsAcceptedReturnType.html b/client/docs/types/methods_index.IsAcceptedReturnType.html deleted file mode 100644 index 2ebfaa75..00000000 --- a/client/docs/types/methods_index.IsAcceptedReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -IsAcceptedReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias IsAcceptedReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Return type for the index.isAccepted method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type IsAcceptedReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    isAccepted: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isAccepted: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whether the container is in this index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_info.AcpsErrorType.html b/client/docs/types/methods_info.AcpsErrorType.html deleted file mode 100644 index c2f79ce1..00000000 --- a/client/docs/types/methods_info.AcpsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -AcpsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias AcpsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  AcpsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_info.AcpsReturnType.html b/client/docs/types/methods_info.AcpsReturnType.html deleted file mode 100644 index 912712c2..00000000 --- a/client/docs/types/methods_info.AcpsReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -AcpsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias AcpsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the info.acps method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type AcpsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        acps: Map<number, { abstainWeight: bigint; objectors: Set<(...)>; objectWeight: bigint; supporters: Set<(...)>; supportWeight: bigint }>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    acps: Map<number, { abstainWeight: bigint; objectors: Set<(...)>; objectWeight: bigint; supporters: Set<(...)>; supportWeight: bigint }>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Map of ACP IDs to their peer preferences

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_info.GetBlockchainIDErrorType.html b/client/docs/types/methods_info.GetBlockchainIDErrorType.html deleted file mode 100644 index edc7c2f2..00000000 --- a/client/docs/types/methods_info.GetBlockchainIDErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockchainIDErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetBlockchainIDErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetBlockchainIDErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_info.GetBlockchainIDParameters.html b/client/docs/types/methods_info.GetBlockchainIDParameters.html deleted file mode 100644 index e8dd332e..00000000 --- a/client/docs/types/methods_info.GetBlockchainIDParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetBlockchainIDParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetBlockchainIDParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the info.getBlockchainID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetBlockchainIDParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            alias: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        alias: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The blockchain's alias (e.g. "X" for X-Chain)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_info.GetBlockchainIDReturnType.html b/client/docs/types/methods_info.GetBlockchainIDReturnType.html deleted file mode 100644 index be7ad25c..00000000 --- a/client/docs/types/methods_info.GetBlockchainIDReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetBlockchainIDReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetBlockchainIDReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the info.getBlockchainID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetBlockchainIDReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              blockchainID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          blockchainID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_info.GetNetworkIDErrorType.html b/client/docs/types/methods_info.GetNetworkIDErrorType.html deleted file mode 100644 index ff98b686..00000000 --- a/client/docs/types/methods_info.GetNetworkIDErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetNetworkIDErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetNetworkIDErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetNetworkIDErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_info.GetNetworkIDReturnType.html b/client/docs/types/methods_info.GetNetworkIDReturnType.html deleted file mode 100644 index ef4d48f5..00000000 --- a/client/docs/types/methods_info.GetNetworkIDReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetNetworkIDReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetNetworkIDReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the info.getNetworkID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetNetworkIDReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  networkID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              networkID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ID of the network (1 for Mainnet, 5 for Fuji testnet)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_info.GetNetworkNameErrorType.html b/client/docs/types/methods_info.GetNetworkNameErrorType.html deleted file mode 100644 index 2b3f4c0e..00000000 --- a/client/docs/types/methods_info.GetNetworkNameErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetNetworkNameErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetNetworkNameErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetNetworkNameErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_info.GetNetworkNameReturnType.html b/client/docs/types/methods_info.GetNetworkNameReturnType.html deleted file mode 100644 index 34ab2054..00000000 --- a/client/docs/types/methods_info.GetNetworkNameReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetNetworkNameReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetNetworkNameReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the info.getNetworkName method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetNetworkNameReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      networkName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  networkName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the network (e.g. "mainnet", "fuji", "local")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_info.GetNodeIDErrorType.html b/client/docs/types/methods_info.GetNodeIDErrorType.html deleted file mode 100644 index ee1496d8..00000000 --- a/client/docs/types/methods_info.GetNodeIDErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetNodeIDErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetNodeIDErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetNodeIDErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_info.GetNodeIDReturnType.html b/client/docs/types/methods_info.GetNodeIDReturnType.html deleted file mode 100644 index 5cad8b67..00000000 --- a/client/docs/types/methods_info.GetNodeIDReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetNodeIDReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetNodeIDReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the info.getNodeID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetNodeIDReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          nodeID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          nodePOP: { proofOfPossession: string; publicKey: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nodeID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The unique identifier of the node

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nodePOP: { proofOfPossession: string; publicKey: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The node's BLS key and proof of possession

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_info.GetNodeIPErrorType.html b/client/docs/types/methods_info.GetNodeIPErrorType.html deleted file mode 100644 index a08c2759..00000000 --- a/client/docs/types/methods_info.GetNodeIPErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetNodeIPErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetNodeIPErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetNodeIPErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_info.GetNodeIPReturnType.html b/client/docs/types/methods_info.GetNodeIPReturnType.html deleted file mode 100644 index f67135b7..00000000 --- a/client/docs/types/methods_info.GetNodeIPReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetNodeIPReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetNodeIPReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the info.getNodeIP method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetNodeIPReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ip: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ip -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ip: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The IP address of the node

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_info.GetNodeVersionErrorType.html b/client/docs/types/methods_info.GetNodeVersionErrorType.html deleted file mode 100644 index 4d51456d..00000000 --- a/client/docs/types/methods_info.GetNodeVersionErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetNodeVersionErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetNodeVersionErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetNodeVersionErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_info.GetNodeVersionReturnType.html b/client/docs/types/methods_info.GetNodeVersionReturnType.html deleted file mode 100644 index 97cbbd2d..00000000 --- a/client/docs/types/methods_info.GetNodeVersionReturnType.html +++ /dev/null @@ -1,11 +0,0 @@ -GetNodeVersionReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetNodeVersionReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the info.getNodeVersion method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetNodeVersionReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  databaseVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gitCommit: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rpcProtocolVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  vmVersions: Map<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              databaseVersion: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The version of the database

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gitCommit: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              rpcProtocolVersion: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The version of the RPC protocol

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The version of the node (e.g. "avalanche/1.9.4")

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              vmVersions: Map<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Map of VM IDs to their versions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_info.GetTxFeeErrorType.html b/client/docs/types/methods_info.GetTxFeeErrorType.html deleted file mode 100644 index 7e72c237..00000000 --- a/client/docs/types/methods_info.GetTxFeeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTxFeeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetTxFeeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetTxFeeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_info.GetTxFeeReturnType.html b/client/docs/types/methods_info.GetTxFeeReturnType.html deleted file mode 100644 index bea6eb13..00000000 --- a/client/docs/types/methods_info.GetTxFeeReturnType.html +++ /dev/null @@ -1,20 +0,0 @@ -GetTxFeeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetTxFeeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the info.getTxFee method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetTxFeeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addPrimaryNetworkDelegatorFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addPrimaryNetworkValidatorFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addSubnetDelegatorFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addSubnetValidatorFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      createAssetTxFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      createBlockchainTxFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      createSubnetTxFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transformSubnetTxFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      txFee: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addPrimaryNetworkDelegatorFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for adding a primary network delegator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addPrimaryNetworkValidatorFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for adding a primary network validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addSubnetDelegatorFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for adding a subnet delegator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addSubnetValidatorFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for adding a subnet validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  createAssetTxFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for creating an asset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  createBlockchainTxFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for creating a blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  createSubnetTxFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for creating a subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transformSubnetTxFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fee for transforming a subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txFee: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The base transaction fee

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_info.GetVMsErrorType.html b/client/docs/types/methods_info.GetVMsErrorType.html deleted file mode 100644 index aa7ff675..00000000 --- a/client/docs/types/methods_info.GetVMsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetVMsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetVMsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetVMsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_info.GetVMsReturnType.html b/client/docs/types/methods_info.GetVMsReturnType.html deleted file mode 100644 index af95626f..00000000 --- a/client/docs/types/methods_info.GetVMsReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetVMsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetVMsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the info.getVMs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetVMsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          vms: { [key: string]: string[] };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vms -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vms: { [key: string]: string[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Map of VM IDs to their aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_info.IsBootstrappedErrorType.html b/client/docs/types/methods_info.IsBootstrappedErrorType.html deleted file mode 100644 index 70731d8b..00000000 --- a/client/docs/types/methods_info.IsBootstrappedErrorType.html +++ /dev/null @@ -1 +0,0 @@ -IsBootstrappedErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias IsBootstrappedErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        IsBootstrappedErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_info.IsBootstrappedParameters.html b/client/docs/types/methods_info.IsBootstrappedParameters.html deleted file mode 100644 index 3cd6eedf..00000000 --- a/client/docs/types/methods_info.IsBootstrappedParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -IsBootstrappedParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias IsBootstrappedParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters for the info.isBootstrapped method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type IsBootstrappedParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chain: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chain: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID or alias of the chain to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_info.IsBootstrappedReturnType.html b/client/docs/types/methods_info.IsBootstrappedReturnType.html deleted file mode 100644 index 1e850fb2..00000000 --- a/client/docs/types/methods_info.IsBootstrappedReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -IsBootstrappedReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias IsBootstrappedReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return type for the info.isBootstrapped method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type IsBootstrappedReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isBootstrapped: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            isBootstrapped: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Whether the chain is done bootstrapping

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_info.PeersErrorType.html b/client/docs/types/methods_info.PeersErrorType.html deleted file mode 100644 index 57fe5369..00000000 --- a/client/docs/types/methods_info.PeersErrorType.html +++ /dev/null @@ -1 +0,0 @@ -PeersErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias PeersErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PeersErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_info.PeersParameters.html b/client/docs/types/methods_info.PeersParameters.html deleted file mode 100644 index 180b61d5..00000000 --- a/client/docs/types/methods_info.PeersParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PeersParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PeersParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters for the info.peers method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type PeersParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nodeIDs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nodeIDs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional array of node IDs to filter peers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_info.PeersReturnType.html b/client/docs/types/methods_info.PeersReturnType.html deleted file mode 100644 index 3125c957..00000000 --- a/client/docs/types/methods_info.PeersReturnType.html +++ /dev/null @@ -1,14 +0,0 @@ -PeersReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PeersReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the info.peers method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PeersReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      numPeers: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      peers: { benched: (...)[]; ip: string; lastReceived: string; lastSent: string; nodeID: string; observedUptime: number; publicIP: string; version: string }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  numPeers: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The number of connected peers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  peers: { benched: (...)[]; ip: string; lastReceived: string; lastSent: string; nodeID: string; observedUptime: number; publicIP: string; version: string }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Array of peer information

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • benched: (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Array of chain IDs the peer is benched on

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • ip: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The remote IP of the peer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • lastReceived: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Timestamp of last message received from the peer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • lastSent: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Timestamp of last message sent to the peer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • nodeID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The prefixed Node ID of the peer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • observedUptime: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The node's primary network uptime observed by the peer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • publicIP: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The public IP of the peer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • version: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The version the peer is running

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_info.UpgradesErrorType.html b/client/docs/types/methods_info.UpgradesErrorType.html deleted file mode 100644 index 37e2653b..00000000 --- a/client/docs/types/methods_info.UpgradesErrorType.html +++ /dev/null @@ -1 +0,0 @@ -UpgradesErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias UpgradesErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UpgradesErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_info.UpgradesReturnType.html b/client/docs/types/methods_info.UpgradesReturnType.html deleted file mode 100644 index d73b6e3f..00000000 --- a/client/docs/types/methods_info.UpgradesReturnType.html +++ /dev/null @@ -1,32 +0,0 @@ -UpgradesReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias UpgradesReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the info.upgrades method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type UpgradesReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase1Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase2Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase3Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase4MinPChainHeight: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase4Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase5Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhase6Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhasePost6Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apricotPhasePre6Time: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          banffTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          cortinaTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          cortinaXChainStopVertexID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          durangoTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          etnaTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fortunaTime?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase1Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase 1 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase2Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase 2 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase3Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase 3 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase4MinPChainHeight: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Minimum P-Chain height for Apricot Phase 4

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase4Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase 4 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase5Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase 5 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhase6Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase 6 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhasePost6Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase Post-6 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      apricotPhasePre6Time: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Apricot Phase Pre-6 upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      banffTime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Banff upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cortinaTime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Cortina upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cortinaXChainStopVertexID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      X-Chain stop vertex ID for Cortina upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      durangoTime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Durango upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      etnaTime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Etna upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      fortunaTime?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Timestamp of Fortuna upgrade

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_info.UptimeErrorType.html b/client/docs/types/methods_info.UptimeErrorType.html deleted file mode 100644 index 6fbc0166..00000000 --- a/client/docs/types/methods_info.UptimeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -UptimeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias UptimeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UptimeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_info.UptimeReturnType.html b/client/docs/types/methods_info.UptimeReturnType.html deleted file mode 100644 index c25a0bd2..00000000 --- a/client/docs/types/methods_info.UptimeReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -UptimeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias UptimeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the info.uptime method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type UptimeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              rewardingStakePercentage: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              weightedAveragePercentage: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          rewardingStakePercentage: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The percent of stake which thinks this node is above the uptime requirement

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          weightedAveragePercentage: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The stake-weighted average of all observed uptimes for this node

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.BlockchainStatus.html b/client/docs/types/methods_pChain.BlockchainStatus.html deleted file mode 100644 index 516804dd..00000000 --- a/client/docs/types/methods_pChain.BlockchainStatus.html +++ /dev/null @@ -1,9 +0,0 @@ -BlockchainStatus | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias BlockchainStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BlockchainStatus: "Validating" | "Created" | "Preferred" | "Syncing" | "Unknown"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Describes the status of a blockchain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Validating: The blockchain is being validated by this node.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Created: The blockchain exists but isn’t being validated by this node.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Preferred: The blockchain was proposed to be created and is likely to be created, but the transaction isn’t yet accepted.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Syncing: This node is participating in the blockchain as a non-validating node.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Unknown: The blockchain either wasn’t proposed or the proposal isn’t preferred.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.Encoding.html b/client/docs/types/methods_pChain.Encoding.html deleted file mode 100644 index 56e7271f..00000000 --- a/client/docs/types/methods_pChain.Encoding.html +++ /dev/null @@ -1 +0,0 @@ -Encoding | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Encoding

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Encoding: "hex" | "json"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetBalanceErrorType.html b/client/docs/types/methods_pChain.GetBalanceErrorType.html deleted file mode 100644 index 94c3f140..00000000 --- a/client/docs/types/methods_pChain.GetBalanceErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBalanceErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetBalanceErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetBalanceErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetBalanceParameters.html b/client/docs/types/methods_pChain.GetBalanceParameters.html deleted file mode 100644 index 04a1abb6..00000000 --- a/client/docs/types/methods_pChain.GetBalanceParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetBalanceParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetBalanceParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters for the platform.getBalance method. -Get the balance of AVAX controlled by a given address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetBalanceParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The addresses to get the balance of

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetBalanceReturnType.html b/client/docs/types/methods_pChain.GetBalanceReturnType.html deleted file mode 100644 index 4cf7dcc6..00000000 --- a/client/docs/types/methods_pChain.GetBalanceReturnType.html +++ /dev/null @@ -1,14 +0,0 @@ -GetBalanceReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetBalanceReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the platform.getBalance method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetBalanceReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        balance: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        lockedNotStakeable: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        lockedStakeable: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        unlocked: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        utxoIDs: { outputIndex: number; txID: string }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    balance: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The total balance of the queried addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    lockedNotStakeable: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The locked and not stakeable balance of the queried addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    lockedStakeable: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The locked stakeable balance of the queried addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    unlocked: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The unlocked balance of the queried addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    utxoIDs: { outputIndex: number; txID: string }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The IDs of the UTXOs that reference the queried addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • outputIndex: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The output index of the UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The transaction ID of the UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetBlockByHeightErrorType.html b/client/docs/types/methods_pChain.GetBlockByHeightErrorType.html deleted file mode 100644 index 9d1fa66d..00000000 --- a/client/docs/types/methods_pChain.GetBlockByHeightErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockByHeightErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetBlockByHeightErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetBlockByHeightErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetBlockByHeightParameters.html b/client/docs/types/methods_pChain.GetBlockByHeightParameters.html deleted file mode 100644 index 43373265..00000000 --- a/client/docs/types/methods_pChain.GetBlockByHeightParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetBlockByHeightParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetBlockByHeightParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the platform.getBlockByHeight method. -Get a block by its height.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetBlockByHeightParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding?: Encoding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding?: Encoding

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The encoding format to use. Can be either 'hex' or 'json'. Defaults to 'hex'

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The block height to query

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetBlockByHeightReturnType.html b/client/docs/types/methods_pChain.GetBlockByHeightReturnType.html deleted file mode 100644 index 5670bb01..00000000 --- a/client/docs/types/methods_pChain.GetBlockByHeightReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -GetBlockByHeightReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetBlockByHeightReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetBlockByHeightReturnType: PChainBlockType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The return type for the platform.getBlockByHeight method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetBlockErrorType.html b/client/docs/types/methods_pChain.GetBlockErrorType.html deleted file mode 100644 index 83af052d..00000000 --- a/client/docs/types/methods_pChain.GetBlockErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetBlockErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetBlockErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetBlockParameters.html b/client/docs/types/methods_pChain.GetBlockParameters.html deleted file mode 100644 index 9d7e0faa..00000000 --- a/client/docs/types/methods_pChain.GetBlockParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetBlockParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetBlockParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the platform.getBlock method. -Get a block by its ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetBlockParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  blockId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding?: Encoding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              blockId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The block ID. It should be in cb58 format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding?: Encoding

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The encoding format to use. Can be either hex or json. Defaults to hex

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetBlockReturnType.html b/client/docs/types/methods_pChain.GetBlockReturnType.html deleted file mode 100644 index a4041b5c..00000000 --- a/client/docs/types/methods_pChain.GetBlockReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -GetBlockReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetBlockReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetBlockReturnType: PChainBlockType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The return type for the platform.getBlock method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetBlockchainStatusErrorType.html b/client/docs/types/methods_pChain.GetBlockchainStatusErrorType.html deleted file mode 100644 index d5a0b360..00000000 --- a/client/docs/types/methods_pChain.GetBlockchainStatusErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockchainStatusErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetBlockchainStatusErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetBlockchainStatusErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetBlockchainStatusParameters.html b/client/docs/types/methods_pChain.GetBlockchainStatusParameters.html deleted file mode 100644 index 02f703ea..00000000 --- a/client/docs/types/methods_pChain.GetBlockchainStatusParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetBlockchainStatusParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetBlockchainStatusParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters for the platform.getBlockchainStatus method. -Get the status of a blockchain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetBlockchainStatusParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        blockchainId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    blockchainId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The ID of the blockchain to get the status for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetBlockchainStatusReturnType.html b/client/docs/types/methods_pChain.GetBlockchainStatusReturnType.html deleted file mode 100644 index 7991f770..00000000 --- a/client/docs/types/methods_pChain.GetBlockchainStatusReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetBlockchainStatusReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetBlockchainStatusReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getBlockchainStatus method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetBlockchainStatusReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          status: BlockchainStatus;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The status of the blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetBlockchainsErrorType.html b/client/docs/types/methods_pChain.GetBlockchainsErrorType.html deleted file mode 100644 index 2c6b31e2..00000000 --- a/client/docs/types/methods_pChain.GetBlockchainsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockchainsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetBlockchainsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetBlockchainsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetBlockchainsReturnType.html b/client/docs/types/methods_pChain.GetBlockchainsReturnType.html deleted file mode 100644 index 70ca506d..00000000 --- a/client/docs/types/methods_pChain.GetBlockchainsReturnType.html +++ /dev/null @@ -1,5 +0,0 @@ -GetBlockchainsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetBlockchainsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the platform.getBlockchains method. -Get all the blockchains that exist (excluding the P-Chain).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetBlockchainsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              blockchains: { id: string; name: string; subnetID: string; vmID: string }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          blockchains: { id: string; name: string; subnetID: string; vmID: string }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          List of blockchains

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetCurrentSupplyErrorType.html b/client/docs/types/methods_pChain.GetCurrentSupplyErrorType.html deleted file mode 100644 index ada66dde..00000000 --- a/client/docs/types/methods_pChain.GetCurrentSupplyErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetCurrentSupplyErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetCurrentSupplyErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetCurrentSupplyErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetCurrentSupplyParameters.html b/client/docs/types/methods_pChain.GetCurrentSupplyParameters.html deleted file mode 100644 index cb8454dd..00000000 --- a/client/docs/types/methods_pChain.GetCurrentSupplyParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetCurrentSupplyParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetCurrentSupplyParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the platform.getCurrentSupply method. -Get the current supply of a token.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetCurrentSupplyParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetId?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetId?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ID of the Subnet to get the supply for. If omitted, gets supply for the Primary Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetCurrentSupplyReturnType.html b/client/docs/types/methods_pChain.GetCurrentSupplyReturnType.html deleted file mode 100644 index 462b1a5c..00000000 --- a/client/docs/types/methods_pChain.GetCurrentSupplyReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetCurrentSupplyReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetCurrentSupplyReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Return type for the platform.getCurrentSupply method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetCurrentSupplyReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    supply: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                supply: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                An upper bound on the number of tokens that exist

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetCurrentValidatorsErrorType.html b/client/docs/types/methods_pChain.GetCurrentValidatorsErrorType.html deleted file mode 100644 index 02aea031..00000000 --- a/client/docs/types/methods_pChain.GetCurrentValidatorsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetCurrentValidatorsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetCurrentValidatorsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetCurrentValidatorsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetCurrentValidatorsParameters.html b/client/docs/types/methods_pChain.GetCurrentValidatorsParameters.html deleted file mode 100644 index f4071203..00000000 --- a/client/docs/types/methods_pChain.GetCurrentValidatorsParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetCurrentValidatorsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetCurrentValidatorsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters for the platform.getCurrentValidators method. -Get the current validators of a Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetCurrentValidatorsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nodeIDs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetID?: Buffer | string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nodeIDs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    List of the NodeIDs of current validators to request. If omitted, all current validators are returned. If a specified NodeID is not in the set of current validators, it will not be included in the response

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    subnetID?: Buffer | string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The Subnet whose current validators are returned. If omitted, returns the current validators of the Primary Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetCurrentValidatorsReturnType.html b/client/docs/types/methods_pChain.GetCurrentValidatorsReturnType.html deleted file mode 100644 index 49044e5d..00000000 --- a/client/docs/types/methods_pChain.GetCurrentValidatorsReturnType.html +++ /dev/null @@ -1,36 +0,0 @@ -GetCurrentValidatorsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetCurrentValidatorsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getCurrentValidators method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetCurrentValidatorsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          validators: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              accruedDelegateeReward: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              connected?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegationFee?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegationRewardOwner?: { addresses: ...; locktime: ...; threshold: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegatorCount?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegators?: (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              delegatorWeight?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              endTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nodeID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              potentialReward?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signer?: { proofOfPosession: ...; publicKey: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stakeAmount: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              startTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              uptime?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              validationRewardOwner?: { addresses: ...; locktime: ...; threshold: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              weight: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      validators: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          accruedDelegateeReward: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          connected?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delegationFee?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delegationRewardOwner?: { addresses: ...; locktime: ...; threshold: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delegatorCount?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delegators?: (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delegatorWeight?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          endTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          nodeID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          potentialReward?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signer?: { proofOfPosession: ...; publicKey: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stakeAmount: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          startTime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          uptime?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          validationRewardOwner?: { addresses: ...; locktime: ...; threshold: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          weight: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      List of validators for the specified Subnet or the Primary Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • accruedDelegateeReward: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The accrued delegatee reward for the validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionalconnected?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Indicates if the node is connected and tracks the Subnet. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionaldelegationFee?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The percent fee this validator charges when others delegate stake to them. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionaldelegationRewardOwner?: { addresses: ...; locktime: ...; threshold: ... }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Specifies the owner of the potential reward earned from delegations. -Includes locktime, threshold, and an array of addresses. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionaldelegatorCount?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The number of delegators on this validator. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionaldelegators?: (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        List of delegators to this validator. -Omitted if subnetID is not the Primary Network. -Omitted unless nodeIDs specifies a single NodeID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionaldelegatorWeight?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The total weight of delegators on this validator. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • endTime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Unix time when the validator stops validating the Subnet. -Omitted if subnetID is an L1 Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • nodeID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The validator's node ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionalpotentialReward?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The potential reward earned from staking. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionalsigner?: { proofOfPosession: ...; publicKey: ... }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The node's BLS public key and proof of possession. -Omitted if the validator doesn't have a BLS public key. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • stakeAmount: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The amount of stake for the validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • startTime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Unix time when the validator starts validating the Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The validator transaction ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionaluptime?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The percentage of time the queried node has reported the peer as online and validating the Subnet. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionalvalidationRewardOwner?: { addresses: ...; locktime: ...; threshold: ... }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Specifies the owner of the potential reward earned from staking. -Includes locktime, threshold, and an array of addresses. -Omitted if subnetID is not the Primary Network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • weight: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The validator's weight (stake) when sampling validators.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetFeeConfigErrorType.html b/client/docs/types/methods_pChain.GetFeeConfigErrorType.html deleted file mode 100644 index 9869147d..00000000 --- a/client/docs/types/methods_pChain.GetFeeConfigErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetFeeConfigErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetFeeConfigErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetFeeConfigErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetFeeConfigReturnType.html b/client/docs/types/methods_pChain.GetFeeConfigReturnType.html deleted file mode 100644 index 3896cdf7..00000000 --- a/client/docs/types/methods_pChain.GetFeeConfigReturnType.html +++ /dev/null @@ -1,15 +0,0 @@ -GetFeeConfigReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetFeeConfigReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the platform.getFeeConfig method. -Get the fee configuration for the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetFeeConfigReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              excessConversionConstant: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              maxCapacity: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              maxPerSecond: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              minPrice: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              targetPerSecond: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              weights: [bandwidth: number, dbRead: number, dbWrite: number, compute: number];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          excessConversionConstant: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A constant used to convert excess gas into a gas price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maxCapacity: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The maximum amount of gas the chain is allowed to store for future use

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maxPerSecond: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The maximum amount of gas the chain is allowed to consume per second

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          minPrice: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The minimum price per unit of gas

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          targetPerSecond: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The target amount of gas the chain should consume per second to maintain stable fees

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          weights: [bandwidth: number, dbRead: number, dbWrite: number, compute: number]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weights to merge fee dimensions into a single gas value

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetFeeStateErrorType.html b/client/docs/types/methods_pChain.GetFeeStateErrorType.html deleted file mode 100644 index ecf657cd..00000000 --- a/client/docs/types/methods_pChain.GetFeeStateErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetFeeStateErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetFeeStateErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetFeeStateErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetFeeStateReturnType.html b/client/docs/types/methods_pChain.GetFeeStateReturnType.html deleted file mode 100644 index 77c59756..00000000 --- a/client/docs/types/methods_pChain.GetFeeStateReturnType.html +++ /dev/null @@ -1,11 +0,0 @@ -GetFeeStateReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetFeeStateReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the platform.getFeeState method. -Get the current fee state of the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetFeeStateReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  capacity: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excess: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  price: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              capacity: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The current capacity of the fee market

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              excess: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The current excess of the fee market

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              price: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The current price of the fee market

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The timestamp of the fee state in ISO8601 format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetHeightErrorType.html b/client/docs/types/methods_pChain.GetHeightErrorType.html deleted file mode 100644 index a3737555..00000000 --- a/client/docs/types/methods_pChain.GetHeightErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetHeightErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetHeightErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetHeightErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetHeightReturnType.html b/client/docs/types/methods_pChain.GetHeightReturnType.html deleted file mode 100644 index 178dbf83..00000000 --- a/client/docs/types/methods_pChain.GetHeightReturnType.html +++ /dev/null @@ -1,5 +0,0 @@ -GetHeightReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetHeightReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the platform.getHeight method. -Get the current height of the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetHeightReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The current height of the P-Chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetL1ValidatorErrorType.html b/client/docs/types/methods_pChain.GetL1ValidatorErrorType.html deleted file mode 100644 index 78311c99..00000000 --- a/client/docs/types/methods_pChain.GetL1ValidatorErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetL1ValidatorErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetL1ValidatorErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetL1ValidatorErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetL1ValidatorParameters.html b/client/docs/types/methods_pChain.GetL1ValidatorParameters.html deleted file mode 100644 index dda88689..00000000 --- a/client/docs/types/methods_pChain.GetL1ValidatorParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetL1ValidatorParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetL1ValidatorParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getL1Validator method. -Get information about an L1 validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetL1ValidatorParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          validationID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      validationID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ID for L1 subnet validator registration transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetL1ValidatorReturnType.html b/client/docs/types/methods_pChain.GetL1ValidatorReturnType.html deleted file mode 100644 index 672411cb..00000000 --- a/client/docs/types/methods_pChain.GetL1ValidatorReturnType.html +++ /dev/null @@ -1,22 +0,0 @@ -GetL1ValidatorReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetL1ValidatorReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return type for the platform.getL1Validator method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetL1ValidatorReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            balance?: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            deactivationOwner: { addresses: string[]; locktime: string; threshold: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            height?: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            minNonce?: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nodeID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            publicKey: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            remainingBalanceOwner: { addresses: string[]; locktime: string; threshold: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            startTime: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            weight: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        balance?: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The current remaining balance that can be used to pay for the validator's continuous fee

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        deactivationOwner: { addresses: string[]; locktime: string; threshold: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Specifies the owner that can withdraw the balance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        height?: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The height of the last accepted block

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        minNonce?: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The minimum nonce that must be included in a SetL1ValidatorWeightTx for the transaction to be valid

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nodeID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The node ID of the validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        publicKey: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The compressed BLS public key of the validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        remainingBalanceOwner: { addresses: string[]; locktime: string; threshold: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Specifies the owner that will receive any withdrawn balance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        startTime: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The Unix timestamp, in seconds, of when this validator was added to the validator set

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The L1 subnet ID this validator is validating

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        weight: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The weight of this validator used for consensus voting and ICM

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetMinStakeErrorType.html b/client/docs/types/methods_pChain.GetMinStakeErrorType.html deleted file mode 100644 index d54c5cba..00000000 --- a/client/docs/types/methods_pChain.GetMinStakeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetMinStakeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetMinStakeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetMinStakeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetMinStakeParameters.html b/client/docs/types/methods_pChain.GetMinStakeParameters.html deleted file mode 100644 index 9110d2b7..00000000 --- a/client/docs/types/methods_pChain.GetMinStakeParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetMinStakeParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetMinStakeParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters for the platform.getMinStake method. -Get the minimum stake required for validators and delegators.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetMinStakeParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subnetID?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetID?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The ID of the Subnet to get minimum stake for. If omitted, gets minimum stake for the Primary Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetMinStakeReturnType.html b/client/docs/types/methods_pChain.GetMinStakeReturnType.html deleted file mode 100644 index 27e1f1cd..00000000 --- a/client/docs/types/methods_pChain.GetMinStakeReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetMinStakeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetMinStakeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the platform.getMinStake method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetMinStakeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  minDelegatorStake: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  minValidatorStake: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              minDelegatorStake: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The minimum amount of stake required for a delegator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              minValidatorStake: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The minimum amount of stake required for a validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetProposedHeightErrorType.html b/client/docs/types/methods_pChain.GetProposedHeightErrorType.html deleted file mode 100644 index 99af4dd5..00000000 --- a/client/docs/types/methods_pChain.GetProposedHeightErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetProposedHeightErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetProposedHeightErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetProposedHeightErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetProposedHeightReturnType.html b/client/docs/types/methods_pChain.GetProposedHeightReturnType.html deleted file mode 100644 index 64acf9e3..00000000 --- a/client/docs/types/methods_pChain.GetProposedHeightReturnType.html +++ /dev/null @@ -1,5 +0,0 @@ -GetProposedHeightReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetProposedHeightReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the platform.getProposedHeight method. -Get the proposed height of the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetProposedHeightReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The proposed height of the P-Chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetRewardUTXOsErrorType.html b/client/docs/types/methods_pChain.GetRewardUTXOsErrorType.html deleted file mode 100644 index 850fbabf..00000000 --- a/client/docs/types/methods_pChain.GetRewardUTXOsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetRewardUTXOsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetRewardUTXOsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetRewardUTXOsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetRewardUTXOsParameters.html b/client/docs/types/methods_pChain.GetRewardUTXOsParameters.html deleted file mode 100644 index a7a122cb..00000000 --- a/client/docs/types/methods_pChain.GetRewardUTXOsParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetRewardUTXOsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetRewardUTXOsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.getRewardUTXOs method. -Get the reward UTXOs for a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetRewardUTXOsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding?: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding?: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The encoding format to use. Can only be hex when a value is provided

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ID of the transaction to get reward UTXOs for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetRewardUTXOsReturnType.html b/client/docs/types/methods_pChain.GetRewardUTXOsReturnType.html deleted file mode 100644 index 195163ea..00000000 --- a/client/docs/types/methods_pChain.GetRewardUTXOsReturnType.html +++ /dev/null @@ -1,8 +0,0 @@ -GetRewardUTXOsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetRewardUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return type for the platform.getRewardUTXOs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetRewardUTXOsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            numFetched: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            utxos: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The encoding format used

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        numFetched: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The number of UTXOs returned

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        utxos: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The reward UTXOs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetStakeErrorType.html b/client/docs/types/methods_pChain.GetStakeErrorType.html deleted file mode 100644 index 12851fa4..00000000 --- a/client/docs/types/methods_pChain.GetStakeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetStakeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetStakeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetStakeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetStakeParameters.html b/client/docs/types/methods_pChain.GetStakeParameters.html deleted file mode 100644 index dfcbf875..00000000 --- a/client/docs/types/methods_pChain.GetStakeParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetStakeParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetStakeParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters for the platform.getStake method. -Get the amount of stake for a set of addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetStakeParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                validatorsOnly?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The addresses to get stake for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            validatorsOnly?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            If true, only return stake for addresses that are validators

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetStakeReturnType.html b/client/docs/types/methods_pChain.GetStakeReturnType.html deleted file mode 100644 index c941650a..00000000 --- a/client/docs/types/methods_pChain.GetStakeReturnType.html +++ /dev/null @@ -1,10 +0,0 @@ -GetStakeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetStakeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the platform.getStake method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetStakeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  staked: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stakedOutputs: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stakeds: Record<string, number>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The encoding format used

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              staked: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The total amount of stake

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stakedOutputs: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The UTXOs that contain the stake

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stakeds: Record<string, number>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A map of addresses to their stake amounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetStakingAssetIDErrorType.html b/client/docs/types/methods_pChain.GetStakingAssetIDErrorType.html deleted file mode 100644 index 51f5ab11..00000000 --- a/client/docs/types/methods_pChain.GetStakingAssetIDErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetStakingAssetIDErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetStakingAssetIDErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetStakingAssetIDErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetStakingAssetIDParameters.html b/client/docs/types/methods_pChain.GetStakingAssetIDParameters.html deleted file mode 100644 index 1b9bd62c..00000000 --- a/client/docs/types/methods_pChain.GetStakingAssetIDParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetStakingAssetIDParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetStakingAssetIDParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters for the platform.getStakingAssetID method. -Get the ID of the asset used for staking on a Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetStakingAssetIDParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The ID of the Subnet to get the staking asset ID for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetStakingAssetIDReturnType.html b/client/docs/types/methods_pChain.GetStakingAssetIDReturnType.html deleted file mode 100644 index 5d3a2949..00000000 --- a/client/docs/types/methods_pChain.GetStakingAssetIDReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetStakingAssetIDReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetStakingAssetIDReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the platform.getStakingAssetID method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetStakingAssetIDReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        assetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    assetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The ID of the asset used for staking on the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetSubnetErrorType.html b/client/docs/types/methods_pChain.GetSubnetErrorType.html deleted file mode 100644 index b1fbd961..00000000 --- a/client/docs/types/methods_pChain.GetSubnetErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetSubnetErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetSubnetErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetSubnetErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetSubnetParameters.html b/client/docs/types/methods_pChain.GetSubnetParameters.html deleted file mode 100644 index b2ef2398..00000000 --- a/client/docs/types/methods_pChain.GetSubnetParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetSubnetParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetSubnetParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the platform.getSubnet method. -Get information about a Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetSubnetParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ID of the Subnet to get information about

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetSubnetReturnType.html b/client/docs/types/methods_pChain.GetSubnetReturnType.html deleted file mode 100644 index 7c507878..00000000 --- a/client/docs/types/methods_pChain.GetSubnetReturnType.html +++ /dev/null @@ -1,18 +0,0 @@ -GetSubnetReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetSubnetReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the platform.getSubnet method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetSubnetReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              controlKeys: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              conversionID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              isPermissioned: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              locktime: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              managerAddress: string | null;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              managerChainID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetTransformationTxID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              threshold: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          controlKeys: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The control keys of the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          conversionID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the conversion

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          isPermissioned: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Whether the Subnet is permissioned

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          locktime: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The locktime of the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          managerAddress: string | null

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The address of the manager

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          managerChainID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the manager chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetTransformationTxID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the transaction that transformed the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          threshold: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The threshold of control keys required to make changes to the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetSubnetsErrorType.html b/client/docs/types/methods_pChain.GetSubnetsErrorType.html deleted file mode 100644 index ab877521..00000000 --- a/client/docs/types/methods_pChain.GetSubnetsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetSubnetsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetSubnetsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetSubnetsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetSubnetsParameters.html b/client/docs/types/methods_pChain.GetSubnetsParameters.html deleted file mode 100644 index 76f987b6..00000000 --- a/client/docs/types/methods_pChain.GetSubnetsParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetSubnetsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetSubnetsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the platform.getSubnets method. -Get information about a set of Subnets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetSubnetsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ids: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ids -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ids: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The IDs of the Subnets to get information about

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetSubnetsReturnType.html b/client/docs/types/methods_pChain.GetSubnetsReturnType.html deleted file mode 100644 index 941cbb69..00000000 --- a/client/docs/types/methods_pChain.GetSubnetsReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -GetSubnetsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetSubnetsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Return type for the platform.getSubnets method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetSubnetsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    subnets: { controlKeys: (...)[]; id: string; threshold: string }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subnets: { controlKeys: (...)[]; id: string; threshold: string }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Information about the requested Subnets

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • controlKeys: (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The control keys of the Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The ID of the Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • threshold: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The threshold of control keys required to make changes to the Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetTimestampErrorType.html b/client/docs/types/methods_pChain.GetTimestampErrorType.html deleted file mode 100644 index 3bcb23c1..00000000 --- a/client/docs/types/methods_pChain.GetTimestampErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTimestampErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetTimestampErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetTimestampErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetTimestampReturnType.html b/client/docs/types/methods_pChain.GetTimestampReturnType.html deleted file mode 100644 index 564ea07c..00000000 --- a/client/docs/types/methods_pChain.GetTimestampReturnType.html +++ /dev/null @@ -1,5 +0,0 @@ -GetTimestampReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetTimestampReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the platform.getTimestamp method. -Get the current timestamp of the P-Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetTimestampReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The current timestamp in ISO 8601 format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetTotalStakeErrorType.html b/client/docs/types/methods_pChain.GetTotalStakeErrorType.html deleted file mode 100644 index 9ec0b1af..00000000 --- a/client/docs/types/methods_pChain.GetTotalStakeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTotalStakeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetTotalStakeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetTotalStakeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetTotalStakeParameters.html b/client/docs/types/methods_pChain.GetTotalStakeParameters.html deleted file mode 100644 index 50dd5465..00000000 --- a/client/docs/types/methods_pChain.GetTotalStakeParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetTotalStakeParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetTotalStakeParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the platform.getTotalStake method. -Get the total amount of stake on a Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetTotalStakeParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The ID of the Subnet to get total stake for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetTotalStakeReturnType.html b/client/docs/types/methods_pChain.GetTotalStakeReturnType.html deleted file mode 100644 index 204454ad..00000000 --- a/client/docs/types/methods_pChain.GetTotalStakeReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetTotalStakeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetTotalStakeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the platform.getTotalStake method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetTotalStakeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stake?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              weight: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stake?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The total amount of stake on the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          weight: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The total weight of all validators on the Subnet

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetTxErrorType.html b/client/docs/types/methods_pChain.GetTxErrorType.html deleted file mode 100644 index 77884073..00000000 --- a/client/docs/types/methods_pChain.GetTxErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTxErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetTxErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetTxErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetTxParameters.html b/client/docs/types/methods_pChain.GetTxParameters.html deleted file mode 100644 index 4bcea3b9..00000000 --- a/client/docs/types/methods_pChain.GetTxParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetTxParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetTxParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the platform.getTx method. -Get a transaction by its ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetTxParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding?: Encoding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding?: Encoding

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. The encoding format to use. Can be either hex or json. Defaults to hex

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ID of the transaction to get

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetTxReturnType.html b/client/docs/types/methods_pChain.GetTxReturnType.html deleted file mode 100644 index 1f6c2d3b..00000000 --- a/client/docs/types/methods_pChain.GetTxReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -GetTxReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetTxReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetTxReturnType: PChainTransactionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Return type for the platform.getTx method. -Returns the transaction encoded to the specified format PChainTransactionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetTxStatusErrorType.html b/client/docs/types/methods_pChain.GetTxStatusErrorType.html deleted file mode 100644 index 5254ebad..00000000 --- a/client/docs/types/methods_pChain.GetTxStatusErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTxStatusErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetTxStatusErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetTxStatusErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.GetTxStatusParameters.html b/client/docs/types/methods_pChain.GetTxStatusParameters.html deleted file mode 100644 index 9e693485..00000000 --- a/client/docs/types/methods_pChain.GetTxStatusParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -GetTxStatusParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetTxStatusParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters for the platform.getTxStatus method. -Get the status of a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetTxStatusParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The ID of the transaction to get the status of

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.GetTxStatusReturnType.html b/client/docs/types/methods_pChain.GetTxStatusReturnType.html deleted file mode 100644 index b118eb4c..00000000 --- a/client/docs/types/methods_pChain.GetTxStatusReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetTxStatusReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetTxStatusReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Return type for the platform.getTxStatus method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetTxStatusReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          status: PChainTransactionStatus;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      reason?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The reason for the transaction's status, if applicable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The status of the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.GetUTXOsErrorType.html b/client/docs/types/methods_pChain.GetUTXOsErrorType.html deleted file mode 100644 index b90f8bf2..00000000 --- a/client/docs/types/methods_pChain.GetUTXOsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetUTXOsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetUTXOsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetUTXOsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.GetUTXOsParameters.html b/client/docs/types/methods_pChain.GetUTXOsParameters.html deleted file mode 100644 index 52fe0696..00000000 --- a/client/docs/types/methods_pChain.GetUTXOsParameters.html +++ /dev/null @@ -1,13 +0,0 @@ -GetUTXOsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetUTXOsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters for the platform.getUTXOs method. -Get the UTXOs that reference a given set of addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetUTXOsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding?: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              limit?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sourceChain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              startIndex?: { address: string; utxo: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The addresses to get UTXOs for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding?: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The encoding format to use. Can only be hex when a value is provided

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          limit?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The maximum number of UTXOs to return

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sourceChain?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain to get UTXOs from. If omitted, gets UTXOs from the P-Chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          startIndex?: { address: string; utxo: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The index to start from. If omitted, starts from the beginning

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.GetUTXOsReturnType.html b/client/docs/types/methods_pChain.GetUTXOsReturnType.html deleted file mode 100644 index 8ea648fc..00000000 --- a/client/docs/types/methods_pChain.GetUTXOsReturnType.html +++ /dev/null @@ -1,12 +0,0 @@ -GetUTXOsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return type for the platform.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetUTXOsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                endIndex: { address: string; utxo: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                numFetched: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                sourceChain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                utxos: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The encoding format used

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            endIndex: { address: string; utxo: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The index of the last UTXO returned

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            numFetched: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The number of UTXOs returned

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sourceChain?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The chain the UTXOs are from

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            utxos: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The UTXOs that reference the given addresses

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.GetValidatorsAtErrorType.html b/client/docs/types/methods_pChain.GetValidatorsAtErrorType.html deleted file mode 100644 index 7c279fcb..00000000 --- a/client/docs/types/methods_pChain.GetValidatorsAtErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetValidatorsAtErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetValidatorsAtErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetValidatorsAtErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.GetValidatorsAtParameters.html b/client/docs/types/methods_pChain.GetValidatorsAtParameters.html deleted file mode 100644 index 9f6fdc4c..00000000 --- a/client/docs/types/methods_pChain.GetValidatorsAtParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -GetValidatorsAtParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetValidatorsAtParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters for the platform.getValidatorsAt method. -Get the validators at a given height.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetValidatorsAtParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    subnetID?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The height to get validators at

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subnetID?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The Subnet to get validators from. If omitted, gets validators from the Primary Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.GetValidatorsAtReturnType.html b/client/docs/types/methods_pChain.GetValidatorsAtReturnType.html deleted file mode 100644 index 0cbc0a3f..00000000 --- a/client/docs/types/methods_pChain.GetValidatorsAtReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetValidatorsAtReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetValidatorsAtReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return type for the platform.getValidatorsAt method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetValidatorsAtReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      validators: Record<string, number>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  validators: Record<string, number>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A map of validator IDs to their stake amounts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.IssueTxErrorType.html b/client/docs/types/methods_pChain.IssueTxErrorType.html deleted file mode 100644 index 53de022e..00000000 --- a/client/docs/types/methods_pChain.IssueTxErrorType.html +++ /dev/null @@ -1 +0,0 @@ -IssueTxErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias IssueTxErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    IssueTxErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.IssueTxParameters.html b/client/docs/types/methods_pChain.IssueTxParameters.html deleted file mode 100644 index acd428f5..00000000 --- a/client/docs/types/methods_pChain.IssueTxParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -IssueTxParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias IssueTxParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters for the platform.issueTx method. -Issue a transaction to the Platform Chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type IssueTxParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The encoding format for the transaction bytes. Can only be hex when a value is provided

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The byte representation of a transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.IssueTxReturnType.html b/client/docs/types/methods_pChain.IssueTxReturnType.html deleted file mode 100644 index f988d74c..00000000 --- a/client/docs/types/methods_pChain.IssueTxReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -IssueTxReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias IssueTxReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Return type for the platform.issueTx method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type IssueTxReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The transaction's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.PChainBlockType.html b/client/docs/types/methods_pChain.PChainBlockType.html deleted file mode 100644 index d2bdafac..00000000 --- a/client/docs/types/methods_pChain.PChainBlockType.html +++ /dev/null @@ -1 +0,0 @@ -PChainBlockType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PChainBlockType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PChainBlockType: { block: { height: number; id: string; parentID: string; time: number; txs: (...)[] }; encoding: "json" } | { block: string; encoding: "hex" }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.PChainTransactionStatus.html b/client/docs/types/methods_pChain.PChainTransactionStatus.html deleted file mode 100644 index 74699996..00000000 --- a/client/docs/types/methods_pChain.PChainTransactionStatus.html +++ /dev/null @@ -1,8 +0,0 @@ -PChainTransactionStatus | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PChainTransactionStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PChainTransactionStatus: "Committed" | "Pending" | "Dropped" | "Unknown"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Represents the status of a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Committed: The transaction is (or will be) accepted by every node.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Pending: The transaction is being voted on by this node.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Dropped: The transaction will never be accepted by any node in the network. Check the reason field for more information.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Unknown: The transaction hasn’t been seen by this node.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.PChainTransactionType.html b/client/docs/types/methods_pChain.PChainTransactionType.html deleted file mode 100644 index ddc32ae2..00000000 --- a/client/docs/types/methods_pChain.PChainTransactionType.html +++ /dev/null @@ -1 +0,0 @@ -PChainTransactionType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias PChainTransactionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PChainTransactionType:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding: "json";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          credentials: (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          unsignedTx: { blockchainID: ...; inputs: ...; memo: ...; networkID: ...; outputs: ...; rewardsOwner: ...; stake: ...; subnetID: ...; validator: ... };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  | { encoding: "hex"; tx: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.SampleValidatorsErrorType.html b/client/docs/types/methods_pChain.SampleValidatorsErrorType.html deleted file mode 100644 index 16ebf84a..00000000 --- a/client/docs/types/methods_pChain.SampleValidatorsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -SampleValidatorsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias SampleValidatorsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SampleValidatorsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_pChain.SampleValidatorsParameters.html b/client/docs/types/methods_pChain.SampleValidatorsParameters.html deleted file mode 100644 index 8cb327d6..00000000 --- a/client/docs/types/methods_pChain.SampleValidatorsParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -SampleValidatorsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias SampleValidatorsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters for the platform.sampleValidators method. -Sample validators from the specified Subnet.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type SampleValidatorsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      size: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetID?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  size: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The number of validators to sample

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Subnet to sample from. If omitted, defaults to the Primary Network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_pChain.SampleValidatorsReturnType.html b/client/docs/types/methods_pChain.SampleValidatorsReturnType.html deleted file mode 100644 index 611a9355..00000000 --- a/client/docs/types/methods_pChain.SampleValidatorsReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -SampleValidatorsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias SampleValidatorsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Return type for the platform.sampleValidators method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type SampleValidatorsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        validators: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    validators: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The IDs of the sampled validators

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_pChain.ValidatedByErrorType.html b/client/docs/types/methods_pChain.ValidatedByErrorType.html deleted file mode 100644 index cf69ff42..00000000 --- a/client/docs/types/methods_pChain.ValidatedByErrorType.html +++ /dev/null @@ -1 +0,0 @@ -ValidatedByErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias ValidatedByErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ValidatedByErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_pChain.ValidatedByParameters.html b/client/docs/types/methods_pChain.ValidatedByParameters.html deleted file mode 100644 index 38f0eb89..00000000 --- a/client/docs/types/methods_pChain.ValidatedByParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -ValidatedByParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias ValidatedByParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters for the platform.validatedBy method. -Get the Subnet that validates a given blockchain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type ValidatedByParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            blockchainID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        blockchainID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The blockchain's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_pChain.ValidatedByReturnType.html b/client/docs/types/methods_pChain.ValidatedByReturnType.html deleted file mode 100644 index a2e21f59..00000000 --- a/client/docs/types/methods_pChain.ValidatedByReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -ValidatedByReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ValidatedByReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Return type for the platform.validatedBy method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type ValidatedByReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the Subnet that validates the blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_pChain.ValidatesErrorType.html b/client/docs/types/methods_pChain.ValidatesErrorType.html deleted file mode 100644 index 81037299..00000000 --- a/client/docs/types/methods_pChain.ValidatesErrorType.html +++ /dev/null @@ -1 +0,0 @@ -ValidatesErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias ValidatesErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ValidatesErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_pChain.ValidatesParameters.html b/client/docs/types/methods_pChain.ValidatesParameters.html deleted file mode 100644 index 9269e667..00000000 --- a/client/docs/types/methods_pChain.ValidatesParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -ValidatesParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ValidatesParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters for the platform.validates method. -Get the IDs of the blockchains a Subnet validates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type ValidatesParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Subnet's ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_pChain.ValidatesReturnType.html b/client/docs/types/methods_pChain.ValidatesReturnType.html deleted file mode 100644 index 59e6ecef..00000000 --- a/client/docs/types/methods_pChain.ValidatesReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -ValidatesReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias ValidatesReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Return type for the platform.validates method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type ValidatesReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    blockchainIDs: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                blockchainIDs: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The IDs of the blockchains the Subnet validates

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_public.BaseFeeErrorType.html b/client/docs/types/methods_public.BaseFeeErrorType.html deleted file mode 100644 index 395fd84a..00000000 --- a/client/docs/types/methods_public.BaseFeeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -BaseFeeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias BaseFeeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BaseFeeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_public.BaseFeeMethod.html b/client/docs/types/methods_public.BaseFeeMethod.html deleted file mode 100644 index 50cbaa88..00000000 --- a/client/docs/types/methods_public.BaseFeeMethod.html +++ /dev/null @@ -1,4 +0,0 @@ -BaseFeeMethod | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias BaseFeeMethod

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type BaseFeeMethod = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Method: "eth_baseFee";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters: [];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ReturnType: BaseFeeReturnType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Method: "eth_baseFee"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters: []
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ReturnType: BaseFeeReturnType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_public.BaseFeeReturnType.html b/client/docs/types/methods_public.BaseFeeReturnType.html deleted file mode 100644 index 5b8001c6..00000000 --- a/client/docs/types/methods_public.BaseFeeReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -BaseFeeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias BaseFeeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      BaseFeeReturnType: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The return type for the eth_baseFee method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The base fee for the next block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_public.FeeConfigErrorType.html b/client/docs/types/methods_public.FeeConfigErrorType.html deleted file mode 100644 index e2613e26..00000000 --- a/client/docs/types/methods_public.FeeConfigErrorType.html +++ /dev/null @@ -1 +0,0 @@ -FeeConfigErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias FeeConfigErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FeeConfigErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_public.FeeConfigMethod.html b/client/docs/types/methods_public.FeeConfigMethod.html deleted file mode 100644 index 7ef9aff9..00000000 --- a/client/docs/types/methods_public.FeeConfigMethod.html +++ /dev/null @@ -1,4 +0,0 @@ -FeeConfigMethod | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias FeeConfigMethod

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type FeeConfigMethod = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Method: "eth_feeConfig";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters: [FeeConfigParameters];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReturnType: FeeConfigReturnType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Method: "eth_feeConfig"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters: [FeeConfigParameters]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_public.FeeConfigParameters.html b/client/docs/types/methods_public.FeeConfigParameters.html deleted file mode 100644 index d2c0637e..00000000 --- a/client/docs/types/methods_public.FeeConfigParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -FeeConfigParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias FeeConfigParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The parameters for the feeConfig method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type FeeConfigParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                blk: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            blk -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            blk: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The block number or hash at which to retrieve the fee config. Defaults to the latest block if omitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_public.FeeConfigReturnType.html b/client/docs/types/methods_public.FeeConfigReturnType.html deleted file mode 100644 index 1b9ecc87..00000000 --- a/client/docs/types/methods_public.FeeConfigReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -FeeConfigReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias FeeConfigReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The return type for the feeConfig method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type FeeConfigReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  feeConfig: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  lastChangedAt: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              feeConfig: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An object containing the fee config for each chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastChangedAt: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The timestamp of the last fee config change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_public.GetActiveRulesAtErrorType.html b/client/docs/types/methods_public.GetActiveRulesAtErrorType.html deleted file mode 100644 index 10376795..00000000 --- a/client/docs/types/methods_public.GetActiveRulesAtErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetActiveRulesAtErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetActiveRulesAtErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetActiveRulesAtErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_public.GetActiveRulesAtMethod.html b/client/docs/types/methods_public.GetActiveRulesAtMethod.html deleted file mode 100644 index 74e00c94..00000000 --- a/client/docs/types/methods_public.GetActiveRulesAtMethod.html +++ /dev/null @@ -1,4 +0,0 @@ -GetActiveRulesAtMethod | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetActiveRulesAtMethod

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetActiveRulesAtMethod = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Method: "eth_getActiveRulesAt";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters: [GetActiveRulesAtParameters];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ReturnType: GetActiveRulesAtReturnType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Method: "eth_getActiveRulesAt"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_public.GetActiveRulesAtParameters.html b/client/docs/types/methods_public.GetActiveRulesAtParameters.html deleted file mode 100644 index 6285166e..00000000 --- a/client/docs/types/methods_public.GetActiveRulesAtParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetActiveRulesAtParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetActiveRulesAtParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The parameters for the eth_getActiveRulesAt method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetActiveRulesAtParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        timestamp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    timestamp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The timestamp at which to retrieve the active rules.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_public.GetActiveRulesAtReturnType.html b/client/docs/types/methods_public.GetActiveRulesAtReturnType.html deleted file mode 100644 index b2d4e1bf..00000000 --- a/client/docs/types/methods_public.GetActiveRulesAtReturnType.html +++ /dev/null @@ -1,8 +0,0 @@ -GetActiveRulesAtReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetActiveRulesAtReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The return type for the eth_getActiveRulesAt method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetActiveRulesAtReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          avalancheRules: Map<string, true>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ethRules: Map<string, true>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          precompiles: Map<string, object>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      avalancheRules: Map<string, true>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The active rules for the Avalanche chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ethRules: Map<string, true>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The active rules for the Ethereum chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      precompiles: Map<string, object>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The precompiles for the Ethereum chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_public.GetChainConfigErrorType.html b/client/docs/types/methods_public.GetChainConfigErrorType.html deleted file mode 100644 index 7a6aaac0..00000000 --- a/client/docs/types/methods_public.GetChainConfigErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetChainConfigErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetChainConfigErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetChainConfigErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_public.GetChainConfigMethod.html b/client/docs/types/methods_public.GetChainConfigMethod.html deleted file mode 100644 index 2fc775d2..00000000 --- a/client/docs/types/methods_public.GetChainConfigMethod.html +++ /dev/null @@ -1,4 +0,0 @@ -GetChainConfigMethod | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetChainConfigMethod

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetChainConfigMethod = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Method: "eth_getChainConfig";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters: [];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReturnType: GetChainConfigReturnType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Method: "eth_getChainConfig"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters: []
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_public.GetChainConfigReturnType.html b/client/docs/types/methods_public.GetChainConfigReturnType.html deleted file mode 100644 index 81ca9a2b..00000000 --- a/client/docs/types/methods_public.GetChainConfigReturnType.html +++ /dev/null @@ -1,19 +0,0 @@ -GetChainConfigReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetChainConfigReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetChainConfigReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                apricotPhase1BlockTimestamp: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                apricotPhase2BlockTimestamp: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                apricotPhase3BlockTimestamp: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                apricotPhase4BlockTimestamp: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                apricotPhase5BlockTimestamp: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                byzantiumBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                chainId: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                constantinopleBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                daoForkBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                daoForkSupport: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                eip150Block: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                eip150Hash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                eip155Block: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                eip158Block: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                homesteadBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                istanbulBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                muirGlacierBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                petersburgBlock: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            apricotPhase1BlockTimestamp: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            apricotPhase2BlockTimestamp: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            apricotPhase3BlockTimestamp: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            apricotPhase4BlockTimestamp: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            apricotPhase5BlockTimestamp: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            byzantiumBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chainId: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            constantinopleBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            daoForkBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            daoForkSupport: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            eip150Block: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            eip150Hash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            eip155Block: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            eip158Block: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            homesteadBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            istanbulBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            muirGlacierBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            petersburgBlock: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_public.MaxPriorityFeePerGasErrorType.html b/client/docs/types/methods_public.MaxPriorityFeePerGasErrorType.html deleted file mode 100644 index 6f38bc8c..00000000 --- a/client/docs/types/methods_public.MaxPriorityFeePerGasErrorType.html +++ /dev/null @@ -1 +0,0 @@ -MaxPriorityFeePerGasErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias MaxPriorityFeePerGasErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MaxPriorityFeePerGasErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_public.MaxPriorityFeePerGasMethod.html b/client/docs/types/methods_public.MaxPriorityFeePerGasMethod.html deleted file mode 100644 index b3320e97..00000000 --- a/client/docs/types/methods_public.MaxPriorityFeePerGasMethod.html +++ /dev/null @@ -1,4 +0,0 @@ -MaxPriorityFeePerGasMethod | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias MaxPriorityFeePerGasMethod

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type MaxPriorityFeePerGasMethod = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Method: "eth_maxPriorityFeePerGas";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters: [];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ReturnType: MaxPriorityFeePerGasReturnType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Method: "eth_maxPriorityFeePerGas"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters: []
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_public.MaxPriorityFeePerGasReturnType.html b/client/docs/types/methods_public.MaxPriorityFeePerGasReturnType.html deleted file mode 100644 index bcbedf64..00000000 --- a/client/docs/types/methods_public.MaxPriorityFeePerGasReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -MaxPriorityFeePerGasReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias MaxPriorityFeePerGasReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MaxPriorityFeePerGasReturnType: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The return type for the eth_maxPriorityFeePerGas method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The maximum priority fee per gas for the next block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet.CommonTxParams.html b/client/docs/types/methods_wallet.CommonTxParams.html deleted file mode 100644 index a5150419..00000000 --- a/client/docs/types/methods_wallet.CommonTxParams.html +++ /dev/null @@ -1,20 +0,0 @@ -CommonTxParams | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias CommonTxParams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type CommonTxParams = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        changeAddresses?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        fromAddresses?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        memo?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        minIssuanceTime?: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        utxos?: Utxo[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    changeAddresses?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional. Addresses to send remaining change to. -If not provided, fromAddresses will be used. -Preference would be given to changeAddresses array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    fromAddresses?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional. Addresses to send funds from. -If not provided, utxos can be used. -Preference would be given to utxos array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    memo?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional. Memo to include in the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    minIssuanceTime?: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional. Earliest time this transaction can be issued. -Useful for building transactions using UTXOs -that are currently locked but will unlock after this time. -If not provided, the current time will be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    utxos?: Utxo[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional. UTXOs to use as inputs for the transaction. -If not provided, utxos will be fetched from the fromAddresses. -Preference would be given to utxos array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet.FormattedCommonAVMTxParams.html b/client/docs/types/methods_wallet.FormattedCommonAVMTxParams.html deleted file mode 100644 index 8c82d4b2..00000000 --- a/client/docs/types/methods_wallet.FormattedCommonAVMTxParams.html +++ /dev/null @@ -1 +0,0 @@ -FormattedCommonAVMTxParams | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias FormattedCommonAVMTxParams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FormattedCommonAVMTxParams: { txFee: avm.TxFee } & FormattedCommonTxParams
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet.FormattedCommonPVMTxParams.html b/client/docs/types/methods_wallet.FormattedCommonPVMTxParams.html deleted file mode 100644 index 3a92b2ae..00000000 --- a/client/docs/types/methods_wallet.FormattedCommonPVMTxParams.html +++ /dev/null @@ -1 +0,0 @@ -FormattedCommonPVMTxParams | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias FormattedCommonPVMTxParams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FormattedCommonPVMTxParams: { feeState: pvm.FeeState } & FormattedCommonTxParams
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet.FormattedCommonTxParams.html b/client/docs/types/methods_wallet.FormattedCommonTxParams.html deleted file mode 100644 index 1ba78ef0..00000000 --- a/client/docs/types/methods_wallet.FormattedCommonTxParams.html +++ /dev/null @@ -1,6 +0,0 @@ -FormattedCommonTxParams | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias FormattedCommonTxParams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type FormattedCommonTxParams = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              changeAddressesBytes?: Uint8Array[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fromAddressesBytes: Uint8Array[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              memo?: Uint8Array;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              minIssuanceTime?: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              utxos: Utxo[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          changeAddressesBytes?: Uint8Array[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fromAddressesBytes: Uint8Array[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          memo?: Uint8Array
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          minIssuanceTime?: bigint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          utxos: Utxo[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet.GetAccountPubKeyErrorType.html b/client/docs/types/methods_wallet.GetAccountPubKeyErrorType.html deleted file mode 100644 index 04442c70..00000000 --- a/client/docs/types/methods_wallet.GetAccountPubKeyErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetAccountPubKeyErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetAccountPubKeyErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetAccountPubKeyErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet.GetAccountPubKeyReturnType.html b/client/docs/types/methods_wallet.GetAccountPubKeyReturnType.html deleted file mode 100644 index 9da97cbc..00000000 --- a/client/docs/types/methods_wallet.GetAccountPubKeyReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetAccountPubKeyReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetAccountPubKeyReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The public key of the account

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type GetAccountPubKeyReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  evm: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xp: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              evm -xp -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              evm: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The public key of the account in EVM format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xp: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The public key of the account in XP format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet.Output.html b/client/docs/types/methods_wallet.Output.html deleted file mode 100644 index 382d8adf..00000000 --- a/client/docs/types/methods_wallet.Output.html +++ /dev/null @@ -1,11 +0,0 @@ -Output | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias Output

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type Output = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    amount: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    assetId?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    locktime?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    threshold?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Addresses who can sign the consuming of this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                amount: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Amount holding in this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                assetId?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional. Asset ID of the UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                locktime?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional. Timestamp in seconds after which this UTXO can be consumed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                threshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional. Threshold of addresses' signatures required to consume this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet.SendErrorType.html b/client/docs/types/methods_wallet.SendErrorType.html deleted file mode 100644 index 471e509b..00000000 --- a/client/docs/types/methods_wallet.SendErrorType.html +++ /dev/null @@ -1 +0,0 @@ -SendErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias SendErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SendErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet.SendParameters.html b/client/docs/types/methods_wallet.SendParameters.html deleted file mode 100644 index 4bdaa808..00000000 --- a/client/docs/types/methods_wallet.SendParameters.html +++ /dev/null @@ -1,18 +0,0 @@ -SendParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias SendParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The parameters for the send method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type SendParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        account?: AvalancheAccount;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        amount: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        destinationChain?: "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        from?: Address | XPAddress;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sourceChain?: "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to: Address | XPAddress;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token?: "AVAX";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The account to send the transaction from.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    amount: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The amount of tokens to send in AVAX.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    destinationChain?: "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The chain to send the tokens to. Default is C. Only P and C are supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    from?: Address | XPAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The address to send the tokens from. Default is the account address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sourceChain?: "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The chain to send the tokens from. Default is C. Only P and C are supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    to: Address | XPAddress

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The address to send the tokens to. If the destination chain is P, this should be a P chain address. If the destination chain is C, this should be a C chain address.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    token?: "AVAX"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The token to send. Default is AVAX. Only AVAX is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet.SendReturnType.html b/client/docs/types/methods_wallet.SendReturnType.html deleted file mode 100644 index 49045c8e..00000000 --- a/client/docs/types/methods_wallet.SendReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -SendReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias SendReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type SendReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          txHashes: TransactionDetails[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      txHashes: TransactionDetails[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The hashes of the transactions. []

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet.SendXPTransactionErrorType.html b/client/docs/types/methods_wallet.SendXPTransactionErrorType.html deleted file mode 100644 index b9b98a94..00000000 --- a/client/docs/types/methods_wallet.SendXPTransactionErrorType.html +++ /dev/null @@ -1 +0,0 @@ -SendXPTransactionErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias SendXPTransactionErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SendXPTransactionErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet.SendXPTransactionParameters.html b/client/docs/types/methods_wallet.SendXPTransactionParameters.html deleted file mode 100644 index 71afa4a9..00000000 --- a/client/docs/types/methods_wallet.SendXPTransactionParameters.html +++ /dev/null @@ -1,24 +0,0 @@ -SendXPTransactionParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias SendXPTransactionParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The parameters for the sendXPTransaction method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type SendXPTransactionParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              account?: AvalancheAccount | Address;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "X" | "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              disableAuth?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              disableOwners?: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              externalIndices?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              feeTolerance?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              internalIndices?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetAuth?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetOwners?: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: string | UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              utxoIds?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          account?: AvalancheAccount | Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the account to use for the transaction. AvalancheAccount or Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain to send the transaction to. "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          disableAuth?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the disable auth to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          disableOwners?: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the disable owners to use for the transaction. PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          externalIndices?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the external indices to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          feeTolerance?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the fee tolerance to use for the transaction. number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          internalIndices?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the internal indices to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetAuth?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the subnet auth to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetOwners?: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the subnet owners to use for the transaction. PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: string | UnsignedTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The transaction to send, either a hex string or an UnsignedTx object. string or UnsignedTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          utxoIds?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional, the utxo ids to use for the transaction. string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet.SendXPTransactionReturnType.html b/client/docs/types/methods_wallet.SendXPTransactionReturnType.html deleted file mode 100644 index 89f4e8d3..00000000 --- a/client/docs/types/methods_wallet.SendXPTransactionReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -SendXPTransactionReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias SendXPTransactionReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The return type for the sendXPTransaction method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type SendXPTransactionReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                chainAlias: "X" | "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                txHash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The chain alias "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            txHash: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The hash of the transaction string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet.SignXPMessageErrorType.html b/client/docs/types/methods_wallet.SignXPMessageErrorType.html deleted file mode 100644 index 59525d24..00000000 --- a/client/docs/types/methods_wallet.SignXPMessageErrorType.html +++ /dev/null @@ -1 +0,0 @@ -SignXPMessageErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias SignXPMessageErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SignXPMessageErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet.SignXPMessageParameters.html b/client/docs/types/methods_wallet.SignXPMessageParameters.html deleted file mode 100644 index 0068bea8..00000000 --- a/client/docs/types/methods_wallet.SignXPMessageParameters.html +++ /dev/null @@ -1,8 +0,0 @@ -SignXPMessageParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias SignXPMessageParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The parameters for the signXPMessage method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type SignXPMessageParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    account?: AvalancheAccount | Address;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    accountIndex?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                account?: AvalancheAccount | Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional, the account to use for the message. AvalancheAccount, Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                accountIndex?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Optional, the account index to use for the message from custom transport (eg: core extension). number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                message: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The message to sign. string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet.SignXPMessageReturnType.html b/client/docs/types/methods_wallet.SignXPMessageReturnType.html deleted file mode 100644 index ac696024..00000000 --- a/client/docs/types/methods_wallet.SignXPMessageReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -SignXPMessageReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias SignXPMessageReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The return type for the signXPMessage method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type SignXPMessageReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signature: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signature: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The signature of the message. string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet.SignXPTransactionErrorType.html b/client/docs/types/methods_wallet.SignXPTransactionErrorType.html deleted file mode 100644 index 41023d97..00000000 --- a/client/docs/types/methods_wallet.SignXPTransactionErrorType.html +++ /dev/null @@ -1 +0,0 @@ -SignXPTransactionErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias SignXPTransactionErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SignXPTransactionErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet.SignXPTransactionParameters.html b/client/docs/types/methods_wallet.SignXPTransactionParameters.html deleted file mode 100644 index efbc98b9..00000000 --- a/client/docs/types/methods_wallet.SignXPTransactionParameters.html +++ /dev/null @@ -1,22 +0,0 @@ -SignXPTransactionParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias SignXPTransactionParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The parameters for the signXPTransaction method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type SignXPTransactionParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          account?: AvalancheAccount | Address;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "X" | "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          disableAuth?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          disableOwners?: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signedTxHex?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetAuth?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetOwners?: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx?: string | UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          utxoIds?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      account?: AvalancheAccount | Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the account to use for the transaction. AvalancheAccount, Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain to sign the transaction on. "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the context to use for the transaction. ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      disableAuth?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the disable auth to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      disableOwners?: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the disable owners to use for the transaction. PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signedTxHex?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The signed transaction in hex format. string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetAuth?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the subnet auth to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetOwners?: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the subnet owners to use for the transaction. PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx?: string | UnsignedTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The transaction to sign, either a hex string or an UnsignedTx object. string or UnsignedTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      utxoIds?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional, the utxo ids to use for the transaction. string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet.SignXPTransactionReturnType.html b/client/docs/types/methods_wallet.SignXPTransactionReturnType.html deleted file mode 100644 index b44ba794..00000000 --- a/client/docs/types/methods_wallet.SignXPTransactionReturnType.html +++ /dev/null @@ -1,16 +0,0 @@ -SignXPTransactionReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias SignXPTransactionReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The return type for the signXPTransaction method

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type SignXPTransactionReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chainAlias: "X" | "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            disableAuth?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            disableOwners?: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signatures: Signatures[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signedTxHex: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetAuth?: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetOwners?: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chainAlias: "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional, the chain to sign the transaction on. "X" | "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        disableAuth?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional, the disable auth to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        disableOwners?: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional, the disable owners to use for the transaction. PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        signatures: Signatures[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The signatures array for the transaction. Signatures

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        signedTxHex: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The signed transaction in hex format. string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetAuth?: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional, the subnet auth to use for the transaction. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetOwners?: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional, the subnet owners to use for the transaction. PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet.Signatures.html b/client/docs/types/methods_wallet.Signatures.html deleted file mode 100644 index 213dc984..00000000 --- a/client/docs/types/methods_wallet.Signatures.html +++ /dev/null @@ -1,6 +0,0 @@ -Signatures | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias Signatures

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The signatures for the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type Signatures = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sigIndices: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signature: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sigIndices: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The indices of the signatures. Contains [inputIndex, signatureIndex] pair. number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signature: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The signature of the transaction with the current account string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet.StakeableOutputFull.html b/client/docs/types/methods_wallet.StakeableOutputFull.html deleted file mode 100644 index 784d04fa..00000000 --- a/client/docs/types/methods_wallet.StakeableOutputFull.html +++ /dev/null @@ -1,4 +0,0 @@ -StakeableOutputFull | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias StakeableOutputFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type StakeableOutputFull = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _type: TypeSymbols;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                assetId: Id;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                output: pvmSerial.StakeableLockOut;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _type: TypeSymbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            assetId: Id
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            output: pvmSerial.StakeableLockOut
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet.TransactionDetails.html b/client/docs/types/methods_wallet.TransactionDetails.html deleted file mode 100644 index 0298000d..00000000 --- a/client/docs/types/methods_wallet.TransactionDetails.html +++ /dev/null @@ -1,6 +0,0 @@ -TransactionDetails | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias TransactionDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The details of a transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type TransactionDetails = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txHash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The chain alias of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              txHash: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The hash of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet.TransferableOutputFull.html b/client/docs/types/methods_wallet.TransferableOutputFull.html deleted file mode 100644 index 1dfb92d5..00000000 --- a/client/docs/types/methods_wallet.TransferableOutputFull.html +++ /dev/null @@ -1,4 +0,0 @@ -TransferableOutputFull | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias TransferableOutputFull

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type TransferableOutputFull = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    _type: TypeSymbols;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    assetId: Id;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    output: TransferOutput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _type: TypeSymbols
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                assetId: Id
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                output: TransferOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet.WaitForTxnErrorType.html b/client/docs/types/methods_wallet.WaitForTxnErrorType.html deleted file mode 100644 index 48725c21..00000000 --- a/client/docs/types/methods_wallet.WaitForTxnErrorType.html +++ /dev/null @@ -1 +0,0 @@ -WaitForTxnErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias WaitForTxnErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  WaitForTxnErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet.WaitForTxnParameters.html b/client/docs/types/methods_wallet.WaitForTxnParameters.html deleted file mode 100644 index f74b3a58..00000000 --- a/client/docs/types/methods_wallet.WaitForTxnParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -WaitForTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias WaitForTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type WaitForTxnParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chainAlias: "X" | "P" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        maxRetries?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sleepTime?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        txHash: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    chainAlias: "X" | "P" | "C"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    maxRetries?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    sleepTime?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    txHash: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet_cChain.PrepareExportTxnParameters.html b/client/docs/types/methods_wallet_cChain.PrepareExportTxnParameters.html deleted file mode 100644 index 4dc7f1e8..00000000 --- a/client/docs/types/methods_wallet_cChain.PrepareExportTxnParameters.html +++ /dev/null @@ -1,13 +0,0 @@ -PrepareExportTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PrepareExportTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type PrepareExportTxnParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          destinationChain: typeof P_CHAIN_ALIAS | typeof X_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportedOutput: { addresses: string[]; amount: number; locktime?: number; threshold?: number };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fromAddress: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      destinationChain: typeof P_CHAIN_ALIAS | typeof X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain alias to export the funds to. P_CHAIN_ALIAS | X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportedOutput: { addresses: string[]; amount: number; locktime?: number; threshold?: number }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The consolidated exported output (UTXO)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Addresses who can sign the consuming of this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • amount: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The amount (in AVAX) held by this exported output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionallocktime?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional. Timestamp in seconds after which this UTXO can be consumed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionalthreshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Optional. Threshold of addresses' signatures required to consume this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      fromAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The EVM address to export the funds from.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet_cChain.PrepareExportTxnReturnType.html b/client/docs/types/methods_wallet_cChain.PrepareExportTxnReturnType.html deleted file mode 100644 index a04bab57..00000000 --- a/client/docs/types/methods_wallet_cChain.PrepareExportTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareExportTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PrepareExportTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type PrepareExportTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chainAlias: typeof C_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            exportTx: evmSerial.ExportTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chainAlias: typeof C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The chain alias. C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        exportTx: evmSerial.ExportTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The export transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet_cChain.PrepareImportTxnParameters.html b/client/docs/types/methods_wallet_cChain.PrepareImportTxnParameters.html deleted file mode 100644 index 8cea15aa..00000000 --- a/client/docs/types/methods_wallet_cChain.PrepareImportTxnParameters.html +++ /dev/null @@ -1,17 +0,0 @@ -PrepareImportTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrepareImportTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type PrepareImportTxnParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              account?: AvalancheAccount | Address;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fromAddresses?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sourceChain: typeof P_CHAIN_ALIAS | typeof X_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              toAddress: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              utxos?: Utxo[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          account?: AvalancheAccount | Address

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The account to use for the transaction. AvalancheAccount or Address -If not provided, the account will be fetched from the client.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          fromAddresses?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The addresses to import the funds from. If not provided, the wallet will be used to fetch the addresses.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sourceChain: typeof P_CHAIN_ALIAS | typeof X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain alias to import the funds from. P_CHAIN_ALIAS | X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          toAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The EVM address to import the funds to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          utxos?: Utxo[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. UTXOs to use as inputs for the transaction. These UTXOs -must be in the atomic memory i.e. should already have been exported -from the source chain. If not provided, utxos will be fetched from -the fromAddresses. Preference would be given to utxos array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet_cChain.PrepareImportTxnReturnType.html b/client/docs/types/methods_wallet_cChain.PrepareImportTxnReturnType.html deleted file mode 100644 index c5952bc3..00000000 --- a/client/docs/types/methods_wallet_cChain.PrepareImportTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareImportTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PrepareImportTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type PrepareImportTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                chainAlias: typeof C_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                importTx: evmSerial.ImportTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chainAlias: typeof C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The chain alias. C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            importTx: evmSerial.ImportTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The import transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet_pChain.ImportedOutput.html b/client/docs/types/methods_wallet_pChain.ImportedOutput.html deleted file mode 100644 index c5e4be25..00000000 --- a/client/docs/types/methods_wallet_pChain.ImportedOutput.html +++ /dev/null @@ -1,9 +0,0 @@ -ImportedOutput | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ImportedOutput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type ImportedOutput = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  locktime?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  threshold?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The addresses to import the funds to. These are the -addresses who can sign the consuming of this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              locktime?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. Timestamp in seconds after which this UTXO can be consumed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              threshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. The number of signatures required out of the total addresses -to spend the imported output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet_pChain.L1Validator.html b/client/docs/types/methods_wallet_pChain.L1Validator.html deleted file mode 100644 index 3ca91e1d..00000000 --- a/client/docs/types/methods_wallet_pChain.L1Validator.html +++ /dev/null @@ -1,19 +0,0 @@ -L1Validator | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias L1Validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                L1 validator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type L1Validator = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    deactivationOwner: PChainOwnerJSON;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    initialBalanceInAvax: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nodeId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nodePoP: { proofOfPossession: string; publicKey: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    remainingBalanceOwner: PChainOwnerJSON;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    weight: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                deactivationOwner: PChainOwnerJSON

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Owner information which can remove or disable the validator -from the L1 validator set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                initialBalanceInAvax: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Initial balance (in AVAX) of the L1 validator required for paying -a contiguous fee to the Primary Network to validate the L1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nodeId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Node ID of the validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nodePoP: { proofOfPossession: string; publicKey: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Proof of possession of the validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • proofOfPossession: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Proof of possession of the public key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • publicKey: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Public key of the validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                remainingBalanceOwner: PChainOwnerJSON

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Owner information to which the remaining L1 validator balance will be assigned, in case -the validator is removed or disabled from the L1 validator set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                weight: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Weight of the validator on the L1 used during the consensus participation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet_pChain.PChainOwnerInfo.html b/client/docs/types/methods_wallet_pChain.PChainOwnerInfo.html deleted file mode 100644 index bc6ec5ca..00000000 --- a/client/docs/types/methods_wallet_pChain.PChainOwnerInfo.html +++ /dev/null @@ -1,6 +0,0 @@ -PChainOwnerInfo | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PChainOwnerInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  P-Chain owner information

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PChainOwnerInfo = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      threshold: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Array of addresses that can sign.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  threshold: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Threshold of signatures required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnParameters.html deleted file mode 100644 index 6d7dc663..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnParameters.html +++ /dev/null @@ -1,21 +0,0 @@ -PrepareAddPermissionlessDelegatorTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PrepareAddPermissionlessDelegatorTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PrepareAddPermissionlessDelegatorTxnParameters: CommonTxParams & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        end: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        locktime?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nodeId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        rewardAddresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stakeInAvax: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        threshold?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • end: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The Unix time in seconds when the delegation stops -(and staked AVAX is returned).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionallocktime?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The unix timestamp in seconds after which the reward UTXO -can be spent, once they are created after the staking period ends.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • nodeId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NodeID of the validator to delegate AVAX to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • rewardAddresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The addresses which will receive the rewards from the delegated stake. -Given addresses will share the reward UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • stakeInAvax: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Amount of AVAX to stake. This amount will be locked until -the end of the staking period. The staked outputs will be -consolidated into a single output and owned by the -changeAddresses or the fromAddresses array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalthreshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The number of signatures required to spend the funds in the -resultant reward UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnReturnType.html deleted file mode 100644 index 2de704f0..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessDelegatorTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareAddPermissionlessDelegatorTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PrepareAddPermissionlessDelegatorTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type PrepareAddPermissionlessDelegatorTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addPermissionlessDelegatorTx: pvmSerial.AddPermissionlessDelegatorTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addPermissionlessDelegatorTx: pvmSerial.AddPermissionlessDelegatorTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The add permissionless delegator transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnParameters.html deleted file mode 100644 index 08605bde..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnParameters.html +++ /dev/null @@ -1,31 +0,0 @@ -PrepareAddPermissionlessValidatorTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PrepareAddPermissionlessValidatorTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PrepareAddPermissionlessValidatorTxnParameters: CommonTxParams & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            delegatorRewardAddresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            delegatorRewardPercentage: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            end: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            locktime?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nodeId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            publicKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rewardAddresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signature?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stakeInAvax: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            threshold?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • delegatorRewardAddresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The addresses which will receive the delegator fee rewards. Given addresses -will share the reward UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • delegatorRewardPercentage: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The percentage of delegator rewards given to validator or delegatorRewardAddresses -as a delgation fee. Valid upto 3 decimal places.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          100

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • end: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The Unix time in seconds when the validator will be removed from staking set. -(and staked AVAX is returned).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionallocktime?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The unix timestamp in seconds after which the reward UTXO -can be spent, once they are created after the staking period ends -(both validator and delegator fee rewards).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • nodeId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The NodeID of the validator being added.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • OptionalpublicKey?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The BLS public key (in hex format) of the validator being added.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • rewardAddresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The addresses which will receive the validator rewards. Given addresses -will share the reward UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalsignature?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The BLS signature (in hex format) of the validator being added.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • stakeInAvax: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Amount of AVAX to stake. The staked amount in nAVAX will -represent the weight of this validator on the network. -This amount will be locked until the end of the staking period. -The staked outputs will be consolidated into a single output -and owned by the changeAddresses or the fromAddresses array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalthreshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The number of signatures required to spend the funds in the -resultant reward UTXO (both validator and delegator fee rewards).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          - -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnReturnType.html deleted file mode 100644 index ea8a16ac..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareAddPermissionlessValidatorTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareAddPermissionlessValidatorTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrepareAddPermissionlessValidatorTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type PrepareAddPermissionlessValidatorTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addPermissionlessValidatorTx: pvmSerial.AddPermissionlessValidatorTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addPermissionlessValidatorTx: pvmSerial.AddPermissionlessValidatorTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The add permissionless validator transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnParameters.html deleted file mode 100644 index 46da40e9..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnParameters.html +++ /dev/null @@ -1,10 +0,0 @@ -PrepareAddSubnetValidatorTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PrepareAddSubnetValidatorTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PrepareAddSubnetValidatorTxnParameters: CommonTxParams & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                end: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nodeId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subnetAuth: readonly (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                subnetId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                weight: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • end: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              End timestamp in seconds after which the subnet validator -will be removed from the subnet's validator set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • nodeId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Node ID of the validator being added.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • subnetAuth: readonly (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Array of indices from the subnet's owners array -who will sign this AddSubnetValidatorTx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • subnetId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Subnet ID to add the validator to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • weight: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weight of the validator that will be used during -consensus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnReturnType.html deleted file mode 100644 index ce2d6dca..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareAddSubnetValidatorTxnReturnType.html +++ /dev/null @@ -1,12 +0,0 @@ -PrepareAddSubnetValidatorTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias PrepareAddSubnetValidatorTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type PrepareAddSubnetValidatorTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addSubnetValidatorTx: pvmSerial.AddSubnetValidatorTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetAuth: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  subnetOwners: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addSubnetValidatorTx: pvmSerial.AddSubnetValidatorTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The add subnet validator transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetAuth: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Array of indices from the subnet's owners array -who will sign this AddSubnetValidatorTx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetOwners: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The subnet owners.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet_pChain.PrepareBaseTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareBaseTxnParameters.html deleted file mode 100644 index ed68cebf..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareBaseTxnParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PrepareBaseTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PrepareBaseTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PrepareBaseTxnParameters: CommonTxParams & { context?: ContextType.Context; outputs?: Output[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionaloutputs?: Output[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional. Outputs to send funds to. It can -be used to specify resulting UTXOs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet_pChain.PrepareBaseTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareBaseTxnReturnType.html deleted file mode 100644 index 7e6741dd..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareBaseTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareBaseTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PrepareBaseTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PrepareBaseTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseTx: pvmSerial.BaseTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  baseTx: pvmSerial.BaseTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The base transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnParameters.html deleted file mode 100644 index 3e9aef31..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnParameters.html +++ /dev/null @@ -1,9 +0,0 @@ -PrepareConvertSubnetToL1TxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PrepareConvertSubnetToL1TxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PrepareConvertSubnetToL1TxnParameters: CommonTxParams & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        blockchainId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        managerContractAddress: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetAuth: readonly (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        subnetId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        validators: L1Validator[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • blockchainId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Blockchain ID of the L1 where the validator manager contract is deployed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • managerContractAddress: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Address of the validator manager contract.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • subnetAuth: readonly (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Array of indices from the subnet's owners array -who will sign this ConvertSubnetToL1Tx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • subnetId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Subnet ID of the subnet to convert to an L1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • validators: L1Validator[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Initial set of L1 validators after the conversion. -[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnReturnType.html deleted file mode 100644 index 7545a500..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareConvertSubnetToL1TxnReturnType.html +++ /dev/null @@ -1,11 +0,0 @@ -PrepareConvertSubnetToL1TxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PrepareConvertSubnetToL1TxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type PrepareConvertSubnetToL1TxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          convertSubnetToL1Tx: pvmSerial.ConvertSubnetToL1Tx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetAuth: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetOwners: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      convertSubnetToL1Tx: pvmSerial.ConvertSubnetToL1Tx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The convert subnet to L1 transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetAuth: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The subnet auth.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetOwners: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The subnet owners.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnParameters.html deleted file mode 100644 index 654c4d3b..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnParameters.html +++ /dev/null @@ -1,9 +0,0 @@ -PrepareCreateChainTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PrepareCreateChainTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PrepareCreateChainTxnParameters: CommonTxParams & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            chainName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fxIds?: readonly (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            genesisData: Record<string, unknown>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetAuth: readonly (...)[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            subnetId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            vmId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • chainName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Name of the chain being created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • OptionalfxIds?: readonly (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. Array of FX IDs to be added to the chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • genesisData: Record<string, unknown>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Genesis JSON data of the chain being created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • subnetAuth: readonly (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Array of indices from the subnet's owners array -who will sign this CreateChainTx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • subnetId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Subnet ID to create the chain on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • vmId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          VM ID of the chain being created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnReturnType.html deleted file mode 100644 index 6aa1c13c..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareCreateChainTxnReturnType.html +++ /dev/null @@ -1,11 +0,0 @@ -PrepareCreateChainTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrepareCreateChainTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type PrepareCreateChainTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              createChainTx: pvmSerial.CreateChainTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetAuth: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              subnetOwners: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          createChainTx: pvmSerial.CreateChainTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The create chain transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetAuth: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The subnet auth.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetOwners: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The subnet owners.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnParameters.html deleted file mode 100644 index 80b2105e..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -PrepareCreateSubnetTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PrepareCreateSubnetTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PrepareCreateSubnetTxnParameters: CommonTxParams & { context?: ContextType.Context; subnetOwners: SubnetOwners }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. The context to use for the transaction. If not provided, the context will be fetched. ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • subnetOwners: SubnetOwners

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Subnet owners of the subnet being created. Signatures -from these addresses will be required to any Subnet related -transactions. SubnetOwners

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnReturnType.html deleted file mode 100644 index 144f8e47..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareCreateSubnetTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareCreateSubnetTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias PrepareCreateSubnetTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type PrepareCreateSubnetTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  createSubnetTx: pvmSerial.CreateSubnetTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              createSubnetTx: pvmSerial.CreateSubnetTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The create subnet transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnParameters.html deleted file mode 100644 index 7f3166b7..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnParameters.html +++ /dev/null @@ -1,5 +0,0 @@ -PrepareDisableL1ValidatorTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PrepareDisableL1ValidatorTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PrepareDisableL1ValidatorTxnParameters: CommonTxParams & { context?: ContextType.Context; disableAuth: number[]; validationId: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • disableAuth: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Array of indices from the L1 validator's disable owners array -who will sign this DisableL1ValidatorTx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • validationId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Validation ID of the L1 validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnReturnType.html deleted file mode 100644 index 0753545a..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareDisableL1ValidatorTxnReturnType.html +++ /dev/null @@ -1,10 +0,0 @@ -PrepareDisableL1ValidatorTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PrepareDisableL1ValidatorTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PrepareDisableL1ValidatorTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      disableAuth: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      disableL1ValidatorTx: pvmSerial.DisableL1ValidatorTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      disableOwners: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  disableAuth: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The disable auth.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  disableL1ValidatorTx: pvmSerial.DisableL1ValidatorTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The disable L1 validator transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  disableOwners: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The disable owners.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet_pChain.PrepareExportTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareExportTxnParameters.html deleted file mode 100644 index a9113e34..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareExportTxnParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PrepareExportTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PrepareExportTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PrepareExportTxnParameters: CommonTxParams & { context?: ContextType.Context; destinationChain: "X" | "C"; exportedOutputs: Output[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • destinationChain: "X" | "C"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain to export the funds to. X_CHAIN_ALIAS | C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • exportedOutputs: Output[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The outputs to export.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet_pChain.PrepareExportTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareExportTxnReturnType.html deleted file mode 100644 index e178124e..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareExportTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareExportTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PrepareExportTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type PrepareExportTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: typeof P_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportTx: pvmSerial.ExportTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: typeof P_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain alias. P_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportTx: pvmSerial.ExportTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The export transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet_pChain.PrepareImportTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareImportTxnParameters.html deleted file mode 100644 index 51c7429a..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareImportTxnParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -PrepareImportTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PrepareImportTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PrepareImportTxnParameters: Omit<CommonTxParams, "changeAddresses"> & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            importedOutput: ImportedOutput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sourceChain: typeof X_CHAIN_ALIAS | typeof C_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • importedOutput: ImportedOutput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Consolidated imported output from the atomic memory (source chain). Users -cannot specify the amount, as it will be consolidation of all the UTXOs -pending for import from the source chain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • sourceChain: typeof X_CHAIN_ALIAS | typeof C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain to import the funds from. X_CHAIN_ALIAS | C_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet_pChain.PrepareImportTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareImportTxnReturnType.html deleted file mode 100644 index ff1e95eb..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareImportTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareImportTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrepareImportTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type PrepareImportTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: typeof P_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importTx: pvmSerial.ImportTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: typeof P_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain alias. P_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          importTx: pvmSerial.ImportTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The import transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnParameters.html deleted file mode 100644 index a21923d9..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PrepareIncreaseL1ValidatorBalanceTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias PrepareIncreaseL1ValidatorBalanceTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PrepareIncreaseL1ValidatorBalanceTxnParameters: CommonTxParams & { balanceInAvax: number; context?: ContextType.Context; validationId: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • balanceInAvax: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Amount of AVAX to increase the L1 validator balance by.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • validationId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Validation ID of the L1 validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnReturnType.html deleted file mode 100644 index 0cd20586..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareIncreaseL1ValidatorBalanceTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareIncreaseL1ValidatorBalanceTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias PrepareIncreaseL1ValidatorBalanceTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type PrepareIncreaseL1ValidatorBalanceTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  increaseL1ValidatorBalanceTx: pvmSerial.IncreaseL1ValidatorBalanceTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              increaseL1ValidatorBalanceTx: pvmSerial.IncreaseL1ValidatorBalanceTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The increase L1 validator balance transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnParameters.html deleted file mode 100644 index 1e279da3..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnParameters.html +++ /dev/null @@ -1,8 +0,0 @@ -PrepareRegisterL1ValidatorTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PrepareRegisterL1ValidatorTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PrepareRegisterL1ValidatorTxnParameters: CommonTxParams & { blsSignature: string; context?: ContextType.Context; initialBalanceInAvax: number; message: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • blsSignature: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  BLS signature of the validator.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • initialBalanceInAvax: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Initial balance (in AVAX) of the L1 validator getting registered, -Balance is required for paying a contiguous fee to the Primary -Network to validate the L1.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • message: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Signed warp message hex with the AddressedCall payload -containing message of type RegisterL1ValidatorMessage.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnReturnType.html deleted file mode 100644 index 2c5b0562..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareRegisterL1ValidatorTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareRegisterL1ValidatorTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PrepareRegisterL1ValidatorTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PrepareRegisterL1ValidatorTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      registerL1ValidatorTx: pvmSerial.RegisterL1ValidatorTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerL1ValidatorTx: pvmSerial.RegisterL1ValidatorTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The register L1 validator transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnParameters.html deleted file mode 100644 index 6ce6dbd6..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -PrepareRemoveSubnetValidatorTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PrepareRemoveSubnetValidatorTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PrepareRemoveSubnetValidatorTxnParameters: CommonTxParams & { context?: ContextType.Context; nodeId: string; subnetAuth: readonly (...)[]; subnetId: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • nodeId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Node ID of the validator being removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • subnetAuth: readonly (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Array of indices from the subnet's owners array -who will sign this RemoveSubnetValidatorTx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • subnetId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Subnet ID of the subnet to remove the validator from.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnReturnType.html deleted file mode 100644 index 0b740db7..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareRemoveSubnetValidatorTxnReturnType.html +++ /dev/null @@ -1,11 +0,0 @@ -PrepareRemoveSubnetValidatorTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PrepareRemoveSubnetValidatorTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type PrepareRemoveSubnetValidatorTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          removeSubnetValidatorTx: pvmSerial.RemoveSubnetValidatorTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetAuth: number[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          subnetOwners: PChainOwner;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeSubnetValidatorTx: pvmSerial.RemoveSubnetValidatorTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The remove subnet validator transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetAuth: number[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The subnet auth.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      subnetOwners: PChainOwner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The subnet owners.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnParameters.html b/client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnParameters.html deleted file mode 100644 index cc9bc949..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PrepareSetL1ValidatorWeightTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PrepareSetL1ValidatorWeightTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PrepareSetL1ValidatorWeightTxnParameters: CommonTxParams & { context?: ContextType.Context; message: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional. The context to use for the transaction. If not provided, the context will be fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • message: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Signed warp message hex with the AddressedCall payload -containing message of type SetL1ValidatorWeightMessage.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnReturnType.html b/client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnReturnType.html deleted file mode 100644 index 8f079dfc..00000000 --- a/client/docs/types/methods_wallet_pChain.PrepareSetL1ValidatorWeightTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareSetL1ValidatorWeightTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrepareSetL1ValidatorWeightTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type PrepareSetL1ValidatorWeightTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: "P";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              setL1ValidatorWeightTx: pvmSerial.SetL1ValidatorWeightTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain alias.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          setL1ValidatorWeightTx: pvmSerial.SetL1ValidatorWeightTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The set L1 validator weight transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_wallet_pChain.SubnetOwners.html b/client/docs/types/methods_wallet_pChain.SubnetOwners.html deleted file mode 100644 index a3c7debc..00000000 --- a/client/docs/types/methods_wallet_pChain.SubnetOwners.html +++ /dev/null @@ -1,7 +0,0 @@ -SubnetOwners | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias SubnetOwners

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type SubnetOwners = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                locktime?: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                threshold?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A list of unique addresses that correspond to the private keys that can be used to spend this output. Addresses must be sorted lexicographically.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            locktime?: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Contains the Unix timestamp that this output can be spent after. The Unix timestamp is specific to the second.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            threshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            An int that names the number of unique signatures required to spend the output. Must be less than or equal to the length of Addresses. If Addresses is empty, must be 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_wallet_xChain.ImportedOutput.html b/client/docs/types/methods_wallet_xChain.ImportedOutput.html deleted file mode 100644 index 25c75f5e..00000000 --- a/client/docs/types/methods_wallet_xChain.ImportedOutput.html +++ /dev/null @@ -1,9 +0,0 @@ -ImportedOutput | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ImportedOutput

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type ImportedOutput = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  locktime?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  threshold?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The addresses to import the funds to. These are the -addresses who can sign the consuming of this UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              locktime?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. Timestamp in seconds after which this UTXO can be consumed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              threshold?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional. The number of signatures required out of the total addresses -to spend the imported output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_wallet_xChain.PrepareBaseTxnParameters.html b/client/docs/types/methods_wallet_xChain.PrepareBaseTxnParameters.html deleted file mode 100644 index e57a0f53..00000000 --- a/client/docs/types/methods_wallet_xChain.PrepareBaseTxnParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PrepareBaseTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PrepareBaseTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PrepareBaseTxnParameters: CommonTxParams & CommonTxParams & { context?: ContextType.Context; outputs?: Output[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionalcontext?: ContextType.Context

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The context to use for the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Optionaloutputs?: Output[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional. Outputs to send funds to. It can -be used to specify resulting UTXOs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_wallet_xChain.PrepareBaseTxnReturnType.html b/client/docs/types/methods_wallet_xChain.PrepareBaseTxnReturnType.html deleted file mode 100644 index ce59eef9..00000000 --- a/client/docs/types/methods_wallet_xChain.PrepareBaseTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareBaseTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PrepareBaseTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type PrepareBaseTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseTx: avmSerial.BaseTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: typeof X_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  baseTx: avmSerial.BaseTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The base transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  chainAlias: typeof X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The chain alias. X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_wallet_xChain.PrepareExportTxnParameters.html b/client/docs/types/methods_wallet_xChain.PrepareExportTxnParameters.html deleted file mode 100644 index efc83ddb..00000000 --- a/client/docs/types/methods_wallet_xChain.PrepareExportTxnParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -PrepareExportTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias PrepareExportTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    PrepareExportTxnParameters: CommonTxParams & { context?: ContextType.Context; destinationChain: typeof P_CHAIN_ALIAS | typeof C_CHAIN_ALIAS; exportedOutputs: Output[] }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_wallet_xChain.PrepareExportTxnReturnType.html b/client/docs/types/methods_wallet_xChain.PrepareExportTxnReturnType.html deleted file mode 100644 index e09a491b..00000000 --- a/client/docs/types/methods_wallet_xChain.PrepareExportTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareExportTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias PrepareExportTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type PrepareExportTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: typeof X_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportTx: avmSerial.ExportTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: typeof X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The chain alias. X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportTx: avmSerial.ExportTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The export transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_wallet_xChain.PrepareImportTxnParameters.html b/client/docs/types/methods_wallet_xChain.PrepareImportTxnParameters.html deleted file mode 100644 index 405bc9e5..00000000 --- a/client/docs/types/methods_wallet_xChain.PrepareImportTxnParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -PrepareImportTxnParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PrepareImportTxnParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PrepareImportTxnParameters: Omit<CommonTxParams, "changeAddresses"> & {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            context?: ContextType.Context;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            importedOutput: ImportedOutput;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sourceChain: typeof P_CHAIN_ALIAS | typeof C_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_wallet_xChain.PrepareImportTxnReturnType.html b/client/docs/types/methods_wallet_xChain.PrepareImportTxnReturnType.html deleted file mode 100644 index f18744e6..00000000 --- a/client/docs/types/methods_wallet_xChain.PrepareImportTxnReturnType.html +++ /dev/null @@ -1,7 +0,0 @@ -PrepareImportTxnReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PrepareImportTxnReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type PrepareImportTxnReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              chainAlias: typeof X_CHAIN_ALIAS;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importTx: avmSerial.ImportTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tx: Common.UnsignedTx;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: typeof X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The chain alias. X_CHAIN_ALIAS

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          importTx: avmSerial.ImportTx

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The import transaction instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The unsigned transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_xChain.BuildGenesisErrorType.html b/client/docs/types/methods_xChain.BuildGenesisErrorType.html deleted file mode 100644 index f38ba4bd..00000000 --- a/client/docs/types/methods_xChain.BuildGenesisErrorType.html +++ /dev/null @@ -1 +0,0 @@ -BuildGenesisErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias BuildGenesisErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            BuildGenesisErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_xChain.BuildGenesisParameters.html b/client/docs/types/methods_xChain.BuildGenesisParameters.html deleted file mode 100644 index 836caf3b..00000000 --- a/client/docs/types/methods_xChain.BuildGenesisParameters.html +++ /dev/null @@ -1,15 +0,0 @@ -BuildGenesisParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias BuildGenesisParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The parameters for the avm.buildGenesis method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type BuildGenesisParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  genesisData: { denomination: number; initialState: { fixedCap: { addresses: ...; amount: ... } }; name: string; symbol: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  networkID: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The encoding of the genesis data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              genesisData: { denomination: number; initialState: { fixedCap: { addresses: ...; amount: ... } }; name: string; symbol: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The genesis data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • denomination: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The denomination of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • initialState: { fixedCap: { addresses: ...; amount: ... } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The initial state of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • fixedCap: { addresses: ...; amount: ... }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The fixed cap of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • addresses: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The addresses that can mint the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • amount: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The amount of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The name of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • symbol: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The symbol of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              networkID: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The network ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_xChain.BuildGenesisReturnType.html b/client/docs/types/methods_xChain.BuildGenesisReturnType.html deleted file mode 100644 index 2c02f200..00000000 --- a/client/docs/types/methods_xChain.BuildGenesisReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -BuildGenesisReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias BuildGenesisReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The return type for the avm.buildGenesis method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type BuildGenesisReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    bytes: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bytes: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The genesis data in bytes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The encoding of the genesis data. Only "hex" is supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_xChain.GetAllBalancesErrorType.html b/client/docs/types/methods_xChain.GetAllBalancesErrorType.html deleted file mode 100644 index 1ae8bda5..00000000 --- a/client/docs/types/methods_xChain.GetAllBalancesErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetAllBalancesErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetAllBalancesErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  GetAllBalancesErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_xChain.GetAllBalancesParameters.html b/client/docs/types/methods_xChain.GetAllBalancesParameters.html deleted file mode 100644 index a9e21a0c..00000000 --- a/client/docs/types/methods_xChain.GetAllBalancesParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetAllBalancesParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetAllBalancesParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The parameters for the avm.getAllBalances method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type GetAllBalancesParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The addresses to get balances for.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_xChain.GetAllBalancesReturnType.html b/client/docs/types/methods_xChain.GetAllBalancesReturnType.html deleted file mode 100644 index 254a19c6..00000000 --- a/client/docs/types/methods_xChain.GetAllBalancesReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetAllBalancesReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetAllBalancesReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The return type for the avm.getAllBalances method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetAllBalancesReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          balances: { assetID: string; balance: bigint }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      balances: { assetID: string; balance: bigint }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The balances.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • assetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The asset ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • balance: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The balance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_xChain.GetAssetDescriptionErrorType.html b/client/docs/types/methods_xChain.GetAssetDescriptionErrorType.html deleted file mode 100644 index a7e85b0c..00000000 --- a/client/docs/types/methods_xChain.GetAssetDescriptionErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetAssetDescriptionErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetAssetDescriptionErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetAssetDescriptionErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_xChain.GetAssetDescriptionParameters.html b/client/docs/types/methods_xChain.GetAssetDescriptionParameters.html deleted file mode 100644 index 41458309..00000000 --- a/client/docs/types/methods_xChain.GetAssetDescriptionParameters.html +++ /dev/null @@ -1,4 +0,0 @@ -GetAssetDescriptionParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetAssetDescriptionParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The parameters for the avm.getAssetDescription method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetAssetDescriptionParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              assetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          assetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The asset ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_xChain.GetAssetDescriptionReturnType.html b/client/docs/types/methods_xChain.GetAssetDescriptionReturnType.html deleted file mode 100644 index 2cc2a7db..00000000 --- a/client/docs/types/methods_xChain.GetAssetDescriptionReturnType.html +++ /dev/null @@ -1,10 +0,0 @@ -GetAssetDescriptionReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetAssetDescriptionReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The return type for the avm.getAssetDescription method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetAssetDescriptionReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                assetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                denomination: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                symbol: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            assetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The asset ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            denomination: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The denomination of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The name of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            symbol: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The symbol of the asset.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_xChain.GetBalanceErrorType.html b/client/docs/types/methods_xChain.GetBalanceErrorType.html deleted file mode 100644 index 07d3012f..00000000 --- a/client/docs/types/methods_xChain.GetBalanceErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBalanceErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetBalanceErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetBalanceErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_xChain.GetBalanceParameters.html b/client/docs/types/methods_xChain.GetBalanceParameters.html deleted file mode 100644 index c8055670..00000000 --- a/client/docs/types/methods_xChain.GetBalanceParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetBalanceParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetBalanceParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The parameters for the avm.getBalance method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetBalanceParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    assetID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                address: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The address to get the balance for.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                assetID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The asset ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_xChain.GetBalanceReturnType.html b/client/docs/types/methods_xChain.GetBalanceReturnType.html deleted file mode 100644 index 18c775fc..00000000 --- a/client/docs/types/methods_xChain.GetBalanceReturnType.html +++ /dev/null @@ -1,8 +0,0 @@ -GetBalanceReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetBalanceReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getBalance method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetBalanceReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      balance: bigint;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      utxoIDs: { outputIndex: number; txID: string }[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  balance: bigint

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The balance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  utxoIDs: { outputIndex: number; txID: string }[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The UTXO IDs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • outputIndex: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The output index.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The transaction ID.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_xChain.GetBlockByHeightErrorType.html b/client/docs/types/methods_xChain.GetBlockByHeightErrorType.html deleted file mode 100644 index 28812e2a..00000000 --- a/client/docs/types/methods_xChain.GetBlockByHeightErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockByHeightErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetBlockByHeightErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetBlockByHeightErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_xChain.GetBlockByHeightParameters.html b/client/docs/types/methods_xChain.GetBlockByHeightParameters.html deleted file mode 100644 index 954202ed..00000000 --- a/client/docs/types/methods_xChain.GetBlockByHeightParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetBlockByHeightParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetBlockByHeightParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The parameters for the avm.getBlockByHeight method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetBlockByHeightParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding?: "hex" | "json";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding?: "hex" | "json"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The encoding of the block. Only "hex" or "json" are supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The height of the block to get.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_xChain.GetBlockByHeightReturnType.html b/client/docs/types/methods_xChain.GetBlockByHeightReturnType.html deleted file mode 100644 index 5d649a59..00000000 --- a/client/docs/types/methods_xChain.GetBlockByHeightReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -GetBlockByHeightReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetBlockByHeightReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        GetBlockByHeightReturnType: XChainBlockType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The return type for the avm.getBlockByHeight method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_xChain.GetBlockErrorType.html b/client/docs/types/methods_xChain.GetBlockErrorType.html deleted file mode 100644 index 30651d44..00000000 --- a/client/docs/types/methods_xChain.GetBlockErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetBlockErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetBlockErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          GetBlockErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_xChain.GetBlockParameters.html b/client/docs/types/methods_xChain.GetBlockParameters.html deleted file mode 100644 index 4993a043..00000000 --- a/client/docs/types/methods_xChain.GetBlockParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetBlockParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetBlockParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The parameters for the avm.getBlock method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type GetBlockParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                blockId: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encoding?: "hex" | "json";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            blockId: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The ID of the block to get.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding?: "hex" | "json"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The encoding of the block. Only "hex" or "json" are supported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_xChain.GetBlockReturnType.html b/client/docs/types/methods_xChain.GetBlockReturnType.html deleted file mode 100644 index 58f42eb0..00000000 --- a/client/docs/types/methods_xChain.GetBlockReturnType.html +++ /dev/null @@ -1,3 +0,0 @@ -GetBlockReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetBlockReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetBlockReturnType: XChainBlockType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The return type for the avm.getBlock method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_xChain.GetHeightErrorType.html b/client/docs/types/methods_xChain.GetHeightErrorType.html deleted file mode 100644 index a9ea4b8b..00000000 --- a/client/docs/types/methods_xChain.GetHeightErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetHeightErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetHeightErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GetHeightErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_xChain.GetHeightReturnType.html b/client/docs/types/methods_xChain.GetHeightReturnType.html deleted file mode 100644 index bf17fa14..00000000 --- a/client/docs/types/methods_xChain.GetHeightReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetHeightReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetHeightReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getHeight method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetHeightReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      height: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The height of the block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_xChain.GetTxErrorType.html b/client/docs/types/methods_xChain.GetTxErrorType.html deleted file mode 100644 index 1094c469..00000000 --- a/client/docs/types/methods_xChain.GetTxErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTxErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetTxErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetTxErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_xChain.GetTxFeeErrorType.html b/client/docs/types/methods_xChain.GetTxFeeErrorType.html deleted file mode 100644 index 78c4e0a9..00000000 --- a/client/docs/types/methods_xChain.GetTxFeeErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTxFeeErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetTxFeeErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GetTxFeeErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_xChain.GetTxFeeReturnType.html b/client/docs/types/methods_xChain.GetTxFeeReturnType.html deleted file mode 100644 index 37d809dc..00000000 --- a/client/docs/types/methods_xChain.GetTxFeeReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetTxFeeReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetTxFeeReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The return type for the avm.getTxFee method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetTxFeeReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            createAssetTxFee: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            txFee: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        createAssetTxFee: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The fee for the create asset transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        txFee: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The fee for the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_xChain.GetTxParameters.html b/client/docs/types/methods_xChain.GetTxParameters.html deleted file mode 100644 index 81747857..00000000 --- a/client/docs/types/methods_xChain.GetTxParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetTxParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias GetTxParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters for the avm.getTx method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type GetTxParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encoding?: "hex" | "json";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding?: "hex" | "json"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The encoding format for the transaction data. Defaults to "json" if not specified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the transaction to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_xChain.GetTxReturnType.html b/client/docs/types/methods_xChain.GetTxReturnType.html deleted file mode 100644 index 0cb77381..00000000 --- a/client/docs/types/methods_xChain.GetTxReturnType.html +++ /dev/null @@ -1,4 +0,0 @@ -GetTxReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias GetTxReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GetTxReturnType: XChainTransactionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Return type for the avm.getTx method. -Returns the transaction in the requested format.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            XChainTransactionType for detailed structure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_xChain.GetTxStatusErrorType.html b/client/docs/types/methods_xChain.GetTxStatusErrorType.html deleted file mode 100644 index b5ec6129..00000000 --- a/client/docs/types/methods_xChain.GetTxStatusErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetTxStatusErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias GetTxStatusErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GetTxStatusErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_xChain.GetTxStatusParameters.html b/client/docs/types/methods_xChain.GetTxStatusParameters.html deleted file mode 100644 index 3dd550d9..00000000 --- a/client/docs/types/methods_xChain.GetTxStatusParameters.html +++ /dev/null @@ -1,6 +0,0 @@ -GetTxStatusParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias GetTxStatusParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The parameters for the avm.getTxStatus method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type GetTxStatusParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    includeReason?: boolean | true;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                includeReason?: boolean | true

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Whether to include the reason for the status.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The ID of the transaction to get the status of.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_xChain.GetTxStatusReturnType.html b/client/docs/types/methods_xChain.GetTxStatusReturnType.html deleted file mode 100644 index fb4e3ddf..00000000 --- a/client/docs/types/methods_xChain.GetTxStatusReturnType.html +++ /dev/null @@ -1,6 +0,0 @@ -GetTxStatusReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias GetTxStatusReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The return type for the avm.getTxStatus method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type GetTxStatusReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      reason?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      status: XChainTransactionStatus;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  reason?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The reason for the status.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The status of the transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_xChain.GetUTXOsErrorType.html b/client/docs/types/methods_xChain.GetUTXOsErrorType.html deleted file mode 100644 index 9237753a..00000000 --- a/client/docs/types/methods_xChain.GetUTXOsErrorType.html +++ /dev/null @@ -1 +0,0 @@ -GetUTXOsErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias GetUTXOsErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    GetUTXOsErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/methods_xChain.GetUTXOsParameters.html b/client/docs/types/methods_xChain.GetUTXOsParameters.html deleted file mode 100644 index e95fccdc..00000000 --- a/client/docs/types/methods_xChain.GetUTXOsParameters.html +++ /dev/null @@ -1,12 +0,0 @@ -GetUTXOsParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetUTXOsParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The parameters for the avm.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetUTXOsParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          addresses: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding?: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          limit?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sourceChain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          startIndex?: { address: string; utxo: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addresses: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The addresses to get UTXOs for.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      encoding?: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The encoding of the UTXOs to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      limit?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The maximum number of UTXOs to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sourceChain?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The source chain of the UTXOs to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      startIndex?: { address: string; utxo: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The starting index of the UTXOs to return.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/types/methods_xChain.GetUTXOsReturnType.html b/client/docs/types/methods_xChain.GetUTXOsReturnType.html deleted file mode 100644 index ae53b676..00000000 --- a/client/docs/types/methods_xChain.GetUTXOsReturnType.html +++ /dev/null @@ -1,14 +0,0 @@ -GetUTXOsReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias GetUTXOsReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The return type for the avm.getUTXOs method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        type GetUTXOsReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            endIndex: { address: string; utxo: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            numFetched: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            sourceChain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            utxos: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The encoding of the UTXOs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        endIndex: { address: string; utxo: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The end index of the UTXOs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • address: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The address of the UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • utxo: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The UTXO.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        numFetched: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The number of UTXOs fetched.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sourceChain?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The source chain of the UTXOs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        utxos: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The UTXOs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/types/methods_xChain.IssueTxErrorType.html b/client/docs/types/methods_xChain.IssueTxErrorType.html deleted file mode 100644 index cb7742bd..00000000 --- a/client/docs/types/methods_xChain.IssueTxErrorType.html +++ /dev/null @@ -1 +0,0 @@ -IssueTxErrorType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias IssueTxErrorType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          IssueTxErrorType: RequestErrorType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/types/methods_xChain.IssueTxParameters.html b/client/docs/types/methods_xChain.IssueTxParameters.html deleted file mode 100644 index 08cb3cc0..00000000 --- a/client/docs/types/methods_xChain.IssueTxParameters.html +++ /dev/null @@ -1,7 +0,0 @@ -IssueTxParameters | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias IssueTxParameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters for the avm.issueTx method. -This method sends a signed transaction to the network.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type IssueTxParameters = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encoding: "hex";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tx: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The encoding format for the transaction data. Must be "hex".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tx: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The signed transaction in hex format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/types/methods_xChain.IssueTxReturnType.html b/client/docs/types/methods_xChain.IssueTxReturnType.html deleted file mode 100644 index dc64ac21..00000000 --- a/client/docs/types/methods_xChain.IssueTxReturnType.html +++ /dev/null @@ -1,5 +0,0 @@ -IssueTxReturnType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias IssueTxReturnType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return type for the avm.issueTx method. -Returns the ID of the issued transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type IssueTxReturnType = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  txID: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              txID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ID of the issued transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/types/methods_xChain.XChainBlockType.html b/client/docs/types/methods_xChain.XChainBlockType.html deleted file mode 100644 index b6312d25..00000000 --- a/client/docs/types/methods_xChain.XChainBlockType.html +++ /dev/null @@ -1,13 +0,0 @@ -XChainBlockType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias XChainBlockType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                XChainBlockType: { block: { height: number; id: string; merkleRoot: string; parentID: string; time: number; txs: (...)[] }; encoding: "json" } | { block: string; encoding: "hex" }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Represents an X-Chain block in either JSON or hex format. -The X-Chain is Avalanche's native platform for creating and trading assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • { block: { height: number; id: string; merkleRoot: string; parentID: string; time: number; txs: (...)[] }; encoding: "json" }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • block: { height: number; id: string; merkleRoot: string; parentID: string; time: number; txs: (...)[] }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • height: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Height of the block in the chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID of the block

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • merkleRoot: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Merkle root of all transactions in the block

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • parentID: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID of the parent block

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • time: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unix timestamp when the block was created

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • txs: (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Array of transactions in the block

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • encoding: "json"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Encoding format for the block data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • { block: string; encoding: "hex" }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • block: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Block data in hex format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Encoding format for the block data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/types/methods_xChain.XChainTransactionStatus.html b/client/docs/types/methods_xChain.XChainTransactionStatus.html deleted file mode 100644 index 154495e8..00000000 --- a/client/docs/types/methods_xChain.XChainTransactionStatus.html +++ /dev/null @@ -1,8 +0,0 @@ -XChainTransactionStatus | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias XChainTransactionStatus

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  XChainTransactionStatus: "Accepted" | "Processing" | "Rejected" | "Unknown"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Represents the possible statuses of an X-Chain transaction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Accepted: Transaction has been accepted and included in a block
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Processing: Transaction is being processed
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Rejected: Transaction was rejected
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Unknown: Transaction status cannot be determined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/types/methods_xChain.XChainTransactionType.html b/client/docs/types/methods_xChain.XChainTransactionType.html deleted file mode 100644 index fdaf982a..00000000 --- a/client/docs/types/methods_xChain.XChainTransactionType.html +++ /dev/null @@ -1,16 +0,0 @@ -XChainTransactionType | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias XChainTransactionType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    XChainTransactionType:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            encoding: "json";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tx: { credentials: (...)[]; id: string; unsignedTx: { blockchainID: ...; destinationChain: ...; exportedOutputs: ...; inputs: ...; memo: ...; networkID: ...; outputs: ... } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | { encoding: "hex"; tx: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Represents an X-Chain transaction in either JSON or hex format. -Transactions on the X-Chain can transfer assets between addresses or export assets to other chains.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          encoding: "json";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tx: { credentials: (...)[]; id: string; unsignedTx: { blockchainID: ...; destinationChain: ...; exportedOutputs: ...; inputs: ...; memo: ...; networkID: ...; outputs: ... } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • encoding: "json"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Encoding format for the transaction data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • tx: { credentials: (...)[]; id: string; unsignedTx: { blockchainID: ...; destinationChain: ...; exportedOutputs: ...; inputs: ...; memo: ...; networkID: ...; outputs: ... } }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • credentials: (...)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Array of credentials (signatures) for the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ID of the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • unsignedTx: { blockchainID: ...; destinationChain: ...; exportedOutputs: ...; inputs: ...; memo: ...; networkID: ...; outputs: ... }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • blockchainID: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID of the blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • destinationChain: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID of the destination chain for cross-chain transfers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • exportedOutputs: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Array of outputs being exported to another chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • inputs: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Array of transaction inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • memo: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Optional memo field for the transaction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • networkID: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Network ID of the blockchain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • outputs: ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Array of transaction outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • { encoding: "hex"; tx: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • encoding: "hex"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Encoding format for the transaction data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • tx: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Transaction data in hex format

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/types/utils.GetUtxosForAddressParams.html b/client/docs/types/utils.GetUtxosForAddressParams.html deleted file mode 100644 index b03e4c80..00000000 --- a/client/docs/types/utils.GetUtxosForAddressParams.html +++ /dev/null @@ -1,4 +0,0 @@ -GetUtxosForAddressParams | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias GetUtxosForAddressParams

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type GetUtxosForAddressParams = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          address: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          chainAlias: "P" | "X" | "C";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sourceChain?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      address: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      chainAlias: "P" | "X" | "C"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sourceChain?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/variables/chains.avalanche.html b/client/docs/variables/chains.avalanche.html deleted file mode 100644 index 8f89fa59..00000000 --- a/client/docs/variables/chains.avalanche.html +++ /dev/null @@ -1,7 +0,0 @@ -avalanche | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable avalancheConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        avalanche: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            blockExplorers: { default: { apiUrl: "https://api.avax.network"; name: "Avalanche Explorer"; url: "https://subnets.avax.network" } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            contracts: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                multicall3: { address: "0xca11bde05977b3631167028862be2a173976ca11"; blockCreated: 11907934 };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                teleporterMessenger: { address: "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                teleporterRegistry: { address: "0x7C43605E14F391720e1b37E49C78C4b03A488d98" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            id: 43114;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: "Avalanche";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nativeCurrency: { decimals: 18; name: "Avalanche"; symbol: "AVAX" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rpcUrls: { default: { http: readonly [(...)] } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        } = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • blockExplorers: { default: { apiUrl: "https://api.avax.network"; name: "Avalanche Explorer"; url: "https://subnets.avax.network" } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Collection of block explorers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • contracts: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              multicall3: { address: "0xca11bde05977b3631167028862be2a173976ca11"; blockCreated: 11907934 };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              teleporterMessenger: { address: "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              teleporterRegistry: { address: "0x7C43605E14F391720e1b37E49C78C4b03A488d98" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Collection of contracts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • id: 43114

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ID in number form

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • name: "Avalanche"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Human-readable name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • nativeCurrency: { decimals: 18; name: "Avalanche"; symbol: "AVAX" }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Currency used by chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • rpcUrls: { default: { http: readonly [(...)] } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Collection of RPC endpoints

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/variables/chains.avalancheFuji.html b/client/docs/variables/chains.avalancheFuji.html deleted file mode 100644 index 7d658708..00000000 --- a/client/docs/variables/chains.avalancheFuji.html +++ /dev/null @@ -1,8 +0,0 @@ -avalancheFuji | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable avalancheFujiConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          avalancheFuji: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              blockExplorers: { default: { apiUrl: "https://api.avax-test.network/"; name: "Avalanche Explorer"; url: "https://subnets.avax-test.network/" } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              contracts: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  multicall3: { address: "0xca11bde05977b3631167028862be2a173976ca11"; blockCreated: 7096959 };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  teleporterMessenger: { address: "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  teleporterRegistry: { address: "0xF86Cb19Ad8405AEFa7d09C778215D2Cb6eBfB228" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: 43113;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: "Avalanche Fuji";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nativeCurrency: { decimals: 18; name: "Avalanche Fuji"; symbol: "AVAX" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              rpcUrls: { default: { http: readonly [(...)] } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              testnet: true;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          } = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • blockExplorers: { default: { apiUrl: "https://api.avax-test.network/"; name: "Avalanche Explorer"; url: "https://subnets.avax-test.network/" } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collection of block explorers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • contracts: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                multicall3: { address: "0xca11bde05977b3631167028862be2a173976ca11"; blockCreated: 7096959 };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                teleporterMessenger: { address: "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                teleporterRegistry: { address: "0xF86Cb19Ad8405AEFa7d09C778215D2Cb6eBfB228" };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collection of contracts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • id: 43113

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID in number form

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • name: "Avalanche Fuji"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Human-readable name

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • nativeCurrency: { decimals: 18; name: "Avalanche Fuji"; symbol: "AVAX" }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Currency used by chain

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • rpcUrls: { default: { http: readonly [(...)] } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Collection of RPC endpoints

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • testnet: true

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Flag for test networks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/variables/methods.C_CHAIN_ALIAS.html b/client/docs/variables/methods.C_CHAIN_ALIAS.html deleted file mode 100644 index 72de9f60..00000000 --- a/client/docs/variables/methods.C_CHAIN_ALIAS.html +++ /dev/null @@ -1 +0,0 @@ -C_CHAIN_ALIAS | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable C_CHAIN_ALIASConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            C_CHAIN_ALIAS: "C" = 'C'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/variables/methods.C_CHAIN_FUJI_ID.html b/client/docs/variables/methods.C_CHAIN_FUJI_ID.html deleted file mode 100644 index 11ff249d..00000000 --- a/client/docs/variables/methods.C_CHAIN_FUJI_ID.html +++ /dev/null @@ -1 +0,0 @@ -C_CHAIN_FUJI_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable C_CHAIN_FUJI_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              C_CHAIN_FUJI_ID: "yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp" = 'yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/variables/methods.C_CHAIN_MAINNET_ID.html b/client/docs/variables/methods.C_CHAIN_MAINNET_ID.html deleted file mode 100644 index 4526f744..00000000 --- a/client/docs/variables/methods.C_CHAIN_MAINNET_ID.html +++ /dev/null @@ -1 +0,0 @@ -C_CHAIN_MAINNET_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable C_CHAIN_MAINNET_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                C_CHAIN_MAINNET_ID: "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5" = '2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/docs/variables/methods.MAINNET_NETWORK_ID.html b/client/docs/variables/methods.MAINNET_NETWORK_ID.html deleted file mode 100644 index c9b06465..00000000 --- a/client/docs/variables/methods.MAINNET_NETWORK_ID.html +++ /dev/null @@ -1 +0,0 @@ -MAINNET_NETWORK_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable MAINNET_NETWORK_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MAINNET_NETWORK_ID: 1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/client/docs/variables/methods.P_CHAIN_ALIAS.html b/client/docs/variables/methods.P_CHAIN_ALIAS.html deleted file mode 100644 index f3b88551..00000000 --- a/client/docs/variables/methods.P_CHAIN_ALIAS.html +++ /dev/null @@ -1 +0,0 @@ -P_CHAIN_ALIAS | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable P_CHAIN_ALIASConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    P_CHAIN_ALIAS: "P" = 'P'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/client/docs/variables/methods.P_CHAIN_FUJI_ID.html b/client/docs/variables/methods.P_CHAIN_FUJI_ID.html deleted file mode 100644 index a9297e37..00000000 --- a/client/docs/variables/methods.P_CHAIN_FUJI_ID.html +++ /dev/null @@ -1 +0,0 @@ -P_CHAIN_FUJI_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable P_CHAIN_FUJI_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      P_CHAIN_FUJI_ID: "11111111111111111111111111111111LpoYY" = '11111111111111111111111111111111LpoYY'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/client/docs/variables/methods.P_CHAIN_MAINNET_ID.html b/client/docs/variables/methods.P_CHAIN_MAINNET_ID.html deleted file mode 100644 index 42f26962..00000000 --- a/client/docs/variables/methods.P_CHAIN_MAINNET_ID.html +++ /dev/null @@ -1 +0,0 @@ -P_CHAIN_MAINNET_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable P_CHAIN_MAINNET_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        P_CHAIN_MAINNET_ID: "11111111111111111111111111111111LpoYY" = '11111111111111111111111111111111LpoYY'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/client/docs/variables/methods.TESTNET_NETWORK_ID.html b/client/docs/variables/methods.TESTNET_NETWORK_ID.html deleted file mode 100644 index 369268c4..00000000 --- a/client/docs/variables/methods.TESTNET_NETWORK_ID.html +++ /dev/null @@ -1 +0,0 @@ -TESTNET_NETWORK_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable TESTNET_NETWORK_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          TESTNET_NETWORK_ID: 5
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/client/docs/variables/methods.X_CHAIN_ALIAS.html b/client/docs/variables/methods.X_CHAIN_ALIAS.html deleted file mode 100644 index dd7c7d6d..00000000 --- a/client/docs/variables/methods.X_CHAIN_ALIAS.html +++ /dev/null @@ -1 +0,0 @@ -X_CHAIN_ALIAS | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable X_CHAIN_ALIASConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            X_CHAIN_ALIAS: "X" = 'X'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/client/docs/variables/methods.X_CHAIN_FUJI_ID.html b/client/docs/variables/methods.X_CHAIN_FUJI_ID.html deleted file mode 100644 index 97de13b2..00000000 --- a/client/docs/variables/methods.X_CHAIN_FUJI_ID.html +++ /dev/null @@ -1 +0,0 @@ -X_CHAIN_FUJI_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable X_CHAIN_FUJI_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              X_CHAIN_FUJI_ID: "2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm" = '2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/client/docs/variables/methods.X_CHAIN_MAINNET_ID.html b/client/docs/variables/methods.X_CHAIN_MAINNET_ID.html deleted file mode 100644 index d94b22a5..00000000 --- a/client/docs/variables/methods.X_CHAIN_MAINNET_ID.html +++ /dev/null @@ -1 +0,0 @@ -X_CHAIN_MAINNET_ID | Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Avalanche SDK Client
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable X_CHAIN_MAINNET_IDConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                X_CHAIN_MAINNET_ID: "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM" = '2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM'
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/client/typedoc.json b/client/typedoc.json index 4310ee5f..157124be 100644 --- a/client/typedoc.json +++ b/client/typedoc.json @@ -19,7 +19,7 @@ "src/methods/info/index.ts", "src/utils/index.ts" ], - "out": "docs", + "out": "docs/typedoc", "name": "Avalanche SDK Client", "excludePrivate": true, "excludeProtected": true, diff --git a/vercel.json b/vercel.json index 2aa99daf..a4e182a5 100644 --- a/vercel.json +++ b/vercel.json @@ -1,6 +1,6 @@ { "buildCommand": "cd client && npm run generate-docs", - "outputDirectory": "client/docs", + "outputDirectory": "client/docs/typedoc", "installCommand": "cd client && npm install", "framework": null, "rewrites": [ From e1888b8b17580319fa16d8c01bfaef14c906af5f Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Wed, 13 Aug 2025 20:45:03 +0530 Subject: [PATCH 06/11] docs: fix double header and missing transport configs in typedoc gen docs --- client/TYPEDOC.md | 167 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 165 insertions(+), 2 deletions(-) diff --git a/client/TYPEDOC.md b/client/TYPEDOC.md index 16585107..9b2221c6 100644 --- a/client/TYPEDOC.md +++ b/client/TYPEDOC.md @@ -1,5 +1,3 @@ -# Avalanche SDK Client - A TypeScript SDK for interacting with the Avalanche network through JSON-RPC APIs. This SDK provides a comprehensive set of tools to interact with all Avalanche chains (P-Chain, X-Chain, C-Chain) and various APIs, including wallet functionality for transaction signing and management. ## Installation @@ -194,12 +192,177 @@ const client = createAvalancheClient({ transport: { type: "", // Transport type url: "", + config: { + // Transport-specific configuration + } }, apiKey: "", // Optional API key rlToken: "", // Optional rate limit token }) ``` +### Transport Configuration + +The SDK supports multiple transport types for connecting to Avalanche nodes. Each transport type has specific configuration options: + +#### HTTP Transport (Recommended) +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "http", + url: "https://api.avax.network/ext/bc/C/rpc", // Optional custom RPC URL + config: { + // HTTP-specific configuration + fetchOptions: { + headers: { + "Custom-Header": "value" + }, + } + retryCount: 3, + retryDelay: 1000, + timeout: 5000 + } + } +}) +``` + +**HTTP Transport Features:** +- **Automatic URL Resolution**: If no URL is provided, uses the chain's default RPC endpoint +- **Custom Headers**: Support for custom HTTP headers via `fetchOptions.headers` +- **API Key Support**: Automatically adds `x-glacier-api-key` header when `apiKey` is provided +- **Rate Limit Support**: Automatically adds `rlToken` header when `rlToken` is provided + +#### WebSocket Transport +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "ws", + url: "wss://api.avax.network/ext/bc/C/ws", // Optional custom WebSocket URL + config: { + // WebSocket-specific configuration + retryCount: 3, + retryDelay: 1000 + } + } +}) +``` + +**WebSocket Transport Features:** +- **Real-time Updates**: Supports WebSocket connections for live data +- **Automatic Reconnection**: Built-in retry logic with configurable retry count and delay +- **Event-driven**: Ideal for subscribing to blockchain events and real-time updates + +#### Custom Transport +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "custom", + provider: window.avalanche, // Custom provider implementation + config: { + // Custom transport configuration + } + } +}) +``` + +**Custom Transport Features:** +- **Provider Integration**: Integrate with custom RPC providers or middleware +- **Flexible Configuration**: Full control over transport behavior +- **Wallet Support**: Special handling for wallet clients + +#### Fallback Transport +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "fallback", + transports: [ + { type: "http", url: "https://primary-rpc.com" }, + { type: "http", url: "https://backup-rpc.com" } + ], + config: { + // Fallback configuration + retryCount: 3, + retryDelay: 1000 + } + } +}) +``` + +**Fallback Transport Features:** +- **High Availability**: Automatic failover between multiple RPC endpoints + +### Advanced Configuration Examples + +#### Custom HTTP Headers and Timeouts +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "http", + config: { + fetchOptions: { + headers: { + "X-Custom-Header": "custom-value" + }, + } + } + } +}) +``` + +#### Multiple Fallback Endpoints +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "fallback", + transports: [ + { type: "http", url: "https://api.avax.network/ext/bc/C/rpc" }, + { type: "http", url: "https://rpc.ankr.com/avalanche" }, + { type: "http", url: "https://avalanche.public-rpc.com" } + ], + config: { + retryCount: 5, + retryDelay: 2000 + } + } +}) +``` + +#### WebSocket with Custom Configuration +```typescript +const client = createAvalancheClient({ + chain: avalanche, + transport: { + type: "ws", + config: { + retryCount: 5, + retryDelay: 2000, + maxRetryDelay: 30000 + } + } +}) +``` + +### Transport Selection Guidelines + +- **HTTP Transport**: Best for most use cases, simple configuration, wide compatibility +- **WebSocket Transport**: Ideal for real-time applications, event subscriptions, live updates +- **Custom Transport**: Use when integrating with specific providers or middleware +- **Fallback Transport**: Recommended for production applications requiring high availability + +### Environment Considerations + +- **Browser**: HTTP and WebSocket transports are fully supported +- **Node.js**: All transport types are supported +- **Mobile**: HTTP transport is recommended for mobile applications +- **Production**: Consider using fallback transport with multiple RPC endpoints for reliability + + ## Exported Modules and Utilities ### Main Exports From 5166e41054c08553bdb06935214492563f64f8c4 Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Fri, 15 Aug 2025 01:34:35 +0530 Subject: [PATCH 07/11] chore: modify usage examples to read private keys from dotenv --- client/examples/.env.example | 5 + client/examples/.gitignore | 9 +- client/examples/config.ts | 28 + client/examples/package-lock.json | 639 +++++++++++++++++- client/examples/package.json | 8 +- .../c-chain/exportTx.ts | 6 +- .../c-chain/importTx.ts | 6 +- .../p-chain/addSubnetValidatorTx.ts | 10 +- .../p-chain/baseTx.ts | 6 +- .../p-chain/convertSubnetToL1Tx.ts | 6 +- .../p-chain/createChainTx.ts | 10 +- .../p-chain/createSubnetTx.ts | 6 +- .../p-chain/exportTx.ts | 6 +- .../p-chain/importTx.ts | 6 +- .../p-chain/removeSubnetValidatorTx.ts | 10 +- .../transfer-avax-from-c-chain-to-p-chain.ts | 6 +- .../transfer-avax-from-c-chain-to-x-chain.ts | 7 +- .../transfer-avax-from-p-chain-to-c-chain.ts | 7 +- .../transfer-avax-from-p-chain-to-x-chain.ts | 7 +- .../transfer-avax-from-x-chain-to-c-chain.ts | 7 +- .../transfer-avax-from-x-chain-to-p-chain.ts | 7 +- .../x-chain/exportTx.ts | 6 +- .../x-chain/importTx.ts | 6 +- client/examples/sendAvax.ts | 6 +- 24 files changed, 723 insertions(+), 97 deletions(-) create mode 100644 client/examples/.env.example create mode 100644 client/examples/config.ts diff --git a/client/examples/.env.example b/client/examples/.env.example new file mode 100644 index 00000000..1ef213e3 --- /dev/null +++ b/client/examples/.env.example @@ -0,0 +1,5 @@ +# Your actual private key here (DO NOT commit this file!) +PRIVATE_KEY_ACCOUNT_1=0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce + +# Your actual private key here (DO NOT commit this file!) +PRIVATE_KEY_ACCOUNT_2=0x56289e99c94b6912bfc12adc093c9b51124f0dc54ac7a766b2bc5ccf558d8027 \ No newline at end of file diff --git a/client/examples/.gitignore b/client/examples/.gitignore index 32b1d27d..340e21b3 100644 --- a/client/examples/.gitignore +++ b/client/examples/.gitignore @@ -10,4 +10,11 @@ /.tshy /.tshy-* /__tests__ -.DS_Store \ No newline at end of file +.DS_Store + +# Environment variables +.env +.env.local +.env.*.local +.env.test +.env.production \ No newline at end of file diff --git a/client/examples/config.ts b/client/examples/config.ts new file mode 100644 index 00000000..62adcb52 --- /dev/null +++ b/client/examples/config.ts @@ -0,0 +1,28 @@ +import { config } from "dotenv"; +import path from "path"; + +// Loads environment variables from .env.example file +// change this to .env when running locally for your +// own private keys +config({ path: path.resolve(__dirname, ".env.example") }); + +export type Config = { + privateKeyAccount1: string; + privateKeyAccount2: string; +}; + +export const loadConfig = (): Config => { + const privateKeyAccount1 = process.env.PRIVATE_KEY_ACCOUNT_1; + const privateKeyAccount2 = process.env.PRIVATE_KEY_ACCOUNT_2; + + if (!privateKeyAccount1 || !privateKeyAccount2) { + throw new Error( + "PRIVATE_KEY_ACCOUNT_1 or PRIVATE_KEY_ACCOUNT_2 is not found in env" + ); + } + + return { + privateKeyAccount1, + privateKeyAccount2, + }; +}; diff --git a/client/examples/package-lock.json b/client/examples/package-lock.json index 2d5b66b1..258b4279 100644 --- a/client/examples/package-lock.json +++ b/client/examples/package-lock.json @@ -7,9 +7,15 @@ "": { "name": "examples", "version": "1.0.0", - "license": "ISC", + "license": "BSD-3-Clause", "dependencies": { - "@avalanche-sdk/client": "^0.0.4-alpha.8" + "@avalanche-sdk/client": "^0.0.4-alpha.12", + "dotenv": "^16.3.1" + }, + "devDependencies": { + "@types/node": "^20.0.0", + "tsx": "^4.0.0", + "typescript": "^5.0.0" } }, "node_modules/@adraffy/ens-normalize": { @@ -34,21 +40,463 @@ } }, "node_modules/@avalanche-sdk/client": { - "version": "0.0.4-alpha.8", - "resolved": "https://registry.npmjs.org/@avalanche-sdk/client/-/client-0.0.4-alpha.8.tgz", - "integrity": "sha512-GrA7p+/UrqeGoLpD1tSZoqEy5L9uyxGLLMjNp/u97vWpZwuJvT3tVmeVOdyhGCIzAsyE3pqu299Ts1VozJl7tw==", - "license": "MIT", + "version": "0.0.4-alpha.12", + "resolved": "https://registry.npmjs.org/@avalanche-sdk/client/-/client-0.0.4-alpha.12.tgz", + "integrity": "sha512-0SuILrZXszPt8Po1QMWemT1NxDsgxpulSVpG//ASOfLjjpyx7oBzKrxfdThvcLO9glAHyHnqqHiK/5KPSZdzcg==", + "license": "BSD-3-Clause", "dependencies": { "@avalabs/avalanchejs": "^5.0.0", "@noble/hashes": "1.3.3", "util": "^0.12.5", - "viem": "2.30.5" + "viem": "^2.33.3" }, "engines": { "node": ">=20", "npm": ">=10" } }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz", + "integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz", + "integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz", + "integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz", + "integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz", + "integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz", + "integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz", + "integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz", + "integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz", + "integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz", + "integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz", + "integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz", + "integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz", + "integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz", + "integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz", + "integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz", + "integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz", + "integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz", + "integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz", + "integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz", + "integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz", + "integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz", + "integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz", + "integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz", + "integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz", + "integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz", + "integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, "node_modules/@ethereumjs/rlp": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/@ethereumjs/rlp/-/rlp-5.0.0.tgz", @@ -202,6 +650,16 @@ "url": "https://paulmillr.com/funding/" } }, + "node_modules/@types/node": { + "version": "20.19.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.10.tgz", + "integrity": "sha512-iAFpG6DokED3roLSP0K+ybeDdIX6Bc0Vd3mLW5uDqThPWtNos3E+EqOM11mPQHKzfWHqEBuLjIlsBQQ8CsISmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, "node_modules/abitype": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/abitype/-/abitype-1.0.8.tgz", @@ -302,6 +760,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", @@ -346,6 +816,48 @@ "node": ">= 0.4" } }, + "node_modules/esbuild": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz", + "integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.9", + "@esbuild/android-arm": "0.25.9", + "@esbuild/android-arm64": "0.25.9", + "@esbuild/android-x64": "0.25.9", + "@esbuild/darwin-arm64": "0.25.9", + "@esbuild/darwin-x64": "0.25.9", + "@esbuild/freebsd-arm64": "0.25.9", + "@esbuild/freebsd-x64": "0.25.9", + "@esbuild/linux-arm": "0.25.9", + "@esbuild/linux-arm64": "0.25.9", + "@esbuild/linux-ia32": "0.25.9", + "@esbuild/linux-loong64": "0.25.9", + "@esbuild/linux-mips64el": "0.25.9", + "@esbuild/linux-ppc64": "0.25.9", + "@esbuild/linux-riscv64": "0.25.9", + "@esbuild/linux-s390x": "0.25.9", + "@esbuild/linux-x64": "0.25.9", + "@esbuild/netbsd-arm64": "0.25.9", + "@esbuild/netbsd-x64": "0.25.9", + "@esbuild/openbsd-arm64": "0.25.9", + "@esbuild/openbsd-x64": "0.25.9", + "@esbuild/openharmony-arm64": "0.25.9", + "@esbuild/sunos-x64": "0.25.9", + "@esbuild/win32-arm64": "0.25.9", + "@esbuild/win32-ia32": "0.25.9", + "@esbuild/win32-x64": "0.25.9" + } + }, "node_modules/eventemitter3": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", @@ -367,6 +879,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -413,6 +940,19 @@ "node": ">= 0.4" } }, + "node_modules/get-tsconfig": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.1.tgz", + "integrity": "sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", @@ -611,9 +1151,9 @@ } }, "node_modules/ox": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ox/-/ox-0.7.1.tgz", - "integrity": "sha512-+k9fY9PRNuAMHRFIUbiK9Nt5seYHHzSQs9Bj+iMETcGtlpS7SmBzcGSVUQO3+nqGLEiNK4598pHNFlVRaZbRsg==", + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/ox/-/ox-0.8.6.tgz", + "integrity": "sha512-eiKcgiVVEGDtEpEdFi1EGoVVI48j6icXHce9nFwCNM7CKG3uoCXKdr4TPhS00Iy1TR2aWSF1ltPD0x/YgqIL9w==", "funding": [ { "type": "github", @@ -622,13 +1162,13 @@ ], "license": "MIT", "dependencies": { - "@adraffy/ens-normalize": "^1.10.1", + "@adraffy/ens-normalize": "^1.11.0", "@noble/ciphers": "^1.3.0", - "@noble/curves": "^1.6.0", - "@noble/hashes": "^1.5.0", - "@scure/bip32": "^1.5.0", - "@scure/bip39": "^1.4.0", - "abitype": "^1.0.6", + "@noble/curves": "^1.9.1", + "@noble/hashes": "^1.8.0", + "@scure/bip32": "^1.7.0", + "@scure/bip39": "^1.6.0", + "abitype": "^1.0.8", "eventemitter3": "5.0.1" }, "peerDependencies": { @@ -676,6 +1216,16 @@ "node": ">= 0.4" } }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, "node_modules/safe-regex-test": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", @@ -710,6 +1260,47 @@ "node": ">= 0.4" } }, + "node_modules/tsx": { + "version": "4.20.4", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.20.4.tgz", + "integrity": "sha512-yyxBKfORQ7LuRt/BQKBXrpcq59ZvSW0XxwfjAt3w2/8PmdxaFzijtMhTawprSHhpzeM5BgU2hXHG3lklIERZXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.25.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, "node_modules/util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -724,9 +1315,9 @@ } }, "node_modules/viem": { - "version": "2.30.5", - "resolved": "https://registry.npmjs.org/viem/-/viem-2.30.5.tgz", - "integrity": "sha512-YymUl7AKsIw3BhQLZxr3j+g8OwqsxmV3xu7zDMmmuFACtvQ3YZaFsKrH7N8eTXpPHYgMlClvKIjgXS8Twt+sQQ==", + "version": "2.33.3", + "resolved": "https://registry.npmjs.org/viem/-/viem-2.33.3.tgz", + "integrity": "sha512-aWDr6i6r3OfNCs0h9IieHFhn7xQJJ8YsuA49+9T5JRyGGAkWhLgcbLq2YMecgwM7HdUZpx1vPugZjsShqNi7Gw==", "funding": [ { "type": "github", @@ -735,13 +1326,13 @@ ], "license": "MIT", "dependencies": { - "@noble/curves": "1.9.1", + "@noble/curves": "1.9.2", "@noble/hashes": "1.8.0", "@scure/bip32": "1.7.0", "@scure/bip39": "1.6.0", "abitype": "1.0.8", "isows": "1.0.7", - "ox": "0.7.1", + "ox": "0.8.6", "ws": "8.18.2" }, "peerDependencies": { @@ -754,9 +1345,9 @@ } }, "node_modules/viem/node_modules/@noble/curves": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz", - "integrity": "sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.2.tgz", + "integrity": "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==", "license": "MIT", "dependencies": { "@noble/hashes": "1.8.0" diff --git a/client/examples/package.json b/client/examples/package.json index 3361062d..1d179574 100644 --- a/client/examples/package.json +++ b/client/examples/package.json @@ -9,6 +9,12 @@ "license": "BSD-3-Clause", "description": "", "dependencies": { - "@avalanche-sdk/client": "^0.0.4-alpha.8" + "@avalanche-sdk/client": "^0.0.4-alpha.12", + "dotenv": "^16.3.1" + }, + "devDependencies": { + "@types/node": "^20.0.0", + "tsx": "^4.0.0", + "typescript": "^5.0.0" } } diff --git a/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts b/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts index 0c2944c5..655c5a9b 100644 --- a/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts +++ b/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issueCChainTx } from "@avalanche-sdk/client/methods/cChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/c-chain/importTx.ts b/client/examples/prepare-primary-network-txns/c-chain/importTx.ts index ec7444cf..2a6715b1 100644 --- a/client/examples/prepare-primary-network-txns/c-chain/importTx.ts +++ b/client/examples/prepare-primary-network-txns/c-chain/importTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issueCChainTx } from "@avalanche-sdk/client/methods/cChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/addSubnetValidatorTx.ts b/client/examples/prepare-primary-network-txns/p-chain/addSubnetValidatorTx.ts index c6450908..3053f7b0 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/addSubnetValidatorTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/addSubnetValidatorTx.ts @@ -2,14 +2,12 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account1 = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); - const account2 = privateKeyToAvalancheAccount( - "0x56289e99c94b6912bfc12adc093c9b51124f0dc54ac7a766b2bc5ccf558d8027" - ); + const { privateKeyAccount1, privateKeyAccount2 } = loadConfig(); + const account1 = privateKeyToAvalancheAccount(privateKeyAccount1); + const account2 = privateKeyToAvalancheAccount(privateKeyAccount2); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts b/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts index c340aaa7..0a23f14f 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts b/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts index 37b2cee9..8c5020df 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts @@ -1,12 +1,12 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../../config"; async function run() { // The account that will be used to sign the transaction - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts b/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts index bb8971c6..3edc0278 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts @@ -2,14 +2,12 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account1 = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); - const account2 = privateKeyToAvalancheAccount( - "0x56289e99c94b6912bfc12adc093c9b51124f0dc54ac7a766b2bc5ccf558d8027" - ); + const { privateKeyAccount1, privateKeyAccount2 } = loadConfig(); + const account1 = privateKeyToAvalancheAccount(privateKeyAccount1); + const account2 = privateKeyToAvalancheAccount(privateKeyAccount2); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts b/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts index e49093d0..afcb66a2 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts b/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts index d0f27cec..4bc75311 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/importTx.ts b/client/examples/prepare-primary-network-txns/p-chain/importTx.ts index 002f47e0..56da56e3 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/importTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/importTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/p-chain/removeSubnetValidatorTx.ts b/client/examples/prepare-primary-network-txns/p-chain/removeSubnetValidatorTx.ts index 3fd7fb17..457eb94e 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/removeSubnetValidatorTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/removeSubnetValidatorTx.ts @@ -2,14 +2,12 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; +import { loadConfig } from "../../config"; async function run() { - const account1 = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); - const account2 = privateKeyToAvalancheAccount( - "0x56289e99c94b6912bfc12adc093c9b51124f0dc54ac7a766b2bc5ccf558d8027" - ); + const { privateKeyAccount1, privateKeyAccount2 } = loadConfig(); + const account1 = privateKeyToAvalancheAccount(privateKeyAccount1); + const account2 = privateKeyToAvalancheAccount(privateKeyAccount2); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-p-chain.ts b/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-p-chain.ts index fed58dda..98655731 100644 --- a/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-p-chain.ts +++ b/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-p-chain.ts @@ -1,12 +1,12 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../config"; async function run() { + const { privateKeyAccount1 } = loadConfig(); // This is the private key of the account that will be used to export the avax from the C-chain to the P-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); // This is the wallet client that will be used to export the avax from the C-chain to the P-chain const walletClient = createAvalancheWalletClient({ diff --git a/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-x-chain.ts b/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-x-chain.ts index 29e435ea..9d4601dd 100644 --- a/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-x-chain.ts +++ b/client/examples/prepare-primary-network-txns/transfer-avax-from-c-chain-to-x-chain.ts @@ -1,12 +1,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../config"; async function run() { - // This is the private key of the account that will be used to export the avax from the C-chain to the X-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); // This is the wallet client that will be used to export the avax from the C-chain to the X-chain const walletClient = createAvalancheWalletClient({ diff --git a/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-c-chain.ts b/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-c-chain.ts index e3006d2f..e326f894 100644 --- a/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-c-chain.ts +++ b/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-c-chain.ts @@ -1,12 +1,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../config"; async function run() { - // This is the private key of the account that will be used to export the avax from the C-chain to the P-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); // This is the wallet client that will be used to export the avax from the P-chain to the C-chain const walletClient = createAvalancheWalletClient({ diff --git a/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-x-chain.ts b/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-x-chain.ts index b54a034f..90086a7c 100644 --- a/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-x-chain.ts +++ b/client/examples/prepare-primary-network-txns/transfer-avax-from-p-chain-to-x-chain.ts @@ -1,12 +1,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../config"; async function run() { - // This is the private key of the account that will be used to export the avax from the C-chain to the P-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); // This is the wallet client that will be used to export the avax from the P-chain to the X-chain const walletClient = createAvalancheWalletClient({ diff --git a/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-c-chain.ts b/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-c-chain.ts index 2d873bca..5f2b60bb 100644 --- a/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-c-chain.ts +++ b/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-c-chain.ts @@ -1,12 +1,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../config"; async function run() { - // This is the private key of the account that will be used to export the avax from the X-chain to the C-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); // This is the wallet client that will be used to export the avax from the X-chain to the C-chain const walletClient = createAvalancheWalletClient({ diff --git a/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-p-chain.ts b/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-p-chain.ts index cecb8837..ace6393a 100644 --- a/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-p-chain.ts +++ b/client/examples/prepare-primary-network-txns/transfer-avax-from-x-chain-to-p-chain.ts @@ -1,12 +1,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "../config"; async function run() { - // This is the private key of the account that will be used to export the avax from the X-chain to the P-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); // This is the wallet client that will be used to export the avax from the X-chain to the P-chain const walletClient = createAvalancheWalletClient({ diff --git a/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts b/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts index 3fe98291..2c52d093 100644 --- a/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts +++ b/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issueXChainTx } from "@avalanche-sdk/client/methods/xChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/prepare-primary-network-txns/x-chain/importTx.ts b/client/examples/prepare-primary-network-txns/x-chain/importTx.ts index 3ce3dfff..9e7d332e 100644 --- a/client/examples/prepare-primary-network-txns/x-chain/importTx.ts +++ b/client/examples/prepare-primary-network-txns/x-chain/importTx.ts @@ -2,11 +2,11 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; import { issueTx as issueXChainTx } from "@avalanche-sdk/client/methods/xChain"; +import { loadConfig } from "../../config"; async function run() { - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const { privateKeyAccount1 } = loadConfig(); + const account = privateKeyToAvalancheAccount(privateKeyAccount1); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, diff --git a/client/examples/sendAvax.ts b/client/examples/sendAvax.ts index fe18e34c..40b54ee8 100644 --- a/client/examples/sendAvax.ts +++ b/client/examples/sendAvax.ts @@ -1,12 +1,12 @@ import { createAvalancheWalletClient } from "@avalanche-sdk/client"; import { privateKeyToAvalancheAccount } from "@avalanche-sdk/client/accounts"; import { avalancheFuji } from "@avalanche-sdk/client/chains"; +import { loadConfig } from "./config"; async function run() { + const config = loadConfig(); // This is the private key of the account that will be used to export the avax from the X-chain to the P-chain - const account = privateKeyToAvalancheAccount( - "0x67d127b32d4c3dccba8a4493c9d6506e6e1c7e0f08fd45aace29c9973c7fc2ce" - ); + const account = privateKeyToAvalancheAccount(config.privateKeyAccount1); // This is the wallet client that will be used to export the avax from the X-chain to the P-chain const walletClient = createAvalancheWalletClient({ From b74f71dcaf144db36a47d3e159b1da3386bb1168 Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Fri, 15 Aug 2025 01:57:10 +0530 Subject: [PATCH 08/11] chore: modify readme and modify examples to use account address --- client/examples/README.md | 10 +++++++++- .../c-chain/exportTx.ts | 4 ++-- .../c-chain/importTx.ts | 2 +- .../prepare-primary-network-txns/p-chain/baseTx.ts | 2 +- .../p-chain/convertSubnetToL1Tx.ts | 1 - .../p-chain/createChainTx.ts | 4 ++-- .../p-chain/createSubnetTx.ts | 9 +++++---- .../p-chain/exportTx.ts | 2 +- .../p-chain/importTx.ts | 2 +- .../x-chain/exportTx.ts | 2 +- .../x-chain/importTx.ts | 2 +- client/examples/sendAvax.ts | 13 +++++++++---- 12 files changed, 33 insertions(+), 20 deletions(-) diff --git a/client/examples/README.md b/client/examples/README.md index e31c44d7..ac746626 100644 --- a/client/examples/README.md +++ b/client/examples/README.md @@ -51,6 +51,8 @@ This directory contains practical examples demonstrating how to use the `@avalan npx tsx ``` +> Note: Make sure to create your own `.env` file by copying the `.env.example` file and modifying the env path in `config.ts` file. By default the example uses the values in .env.example and the address mentioned are from these private key values. + ## Available Examples ### Basic Examples @@ -147,10 +149,16 @@ Most examples require configuration before running: 1. **Network Selection**: Examples default to Fuji testnet. Modify the network configuration in each example file to use mainnet or local network. -2. **Private Keys**: Replace placeholder private keys with your actual keys for testing. +2. **Private Keys**: Copy the example environment file in .env and edit with your actual values 3. **Addresses**: Update recipient addresses to valid Avalanche addresses. +## Security Notes + +- **Never commit your `.env` file** - it contains sensitive private keys +- **Use testnet keys** for development and testing +- **Keep your mainnet private keys secure** and offline + ## Important Notes - **Testnet Usage**: Examples are configured for Fuji testnet by default. Use testnet AVAX for experimentation. diff --git a/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts b/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts index 655c5a9b..e6421a18 100644 --- a/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts +++ b/client/examples/prepare-primary-network-txns/c-chain/exportTx.ts @@ -19,9 +19,9 @@ async function run() { const cChainExportTxnRequest = await walletClient.cChain.prepareExportTxn({ destinationChain: "P", - fromAddress: "0x76Dd3d7b2f635c2547B861e55aE8A374E587742D", + fromAddress: account.getEVMAddress(), // 0x76Dd3d7b2f635c2547B861e55aE8A374E587742D exportedOutput: { - addresses: ["P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"], + addresses: [account.getXPAddress("P", "fuji")], // P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz amount: 0.0001, }, }); diff --git a/client/examples/prepare-primary-network-txns/c-chain/importTx.ts b/client/examples/prepare-primary-network-txns/c-chain/importTx.ts index 2a6715b1..ba499fe9 100644 --- a/client/examples/prepare-primary-network-txns/c-chain/importTx.ts +++ b/client/examples/prepare-primary-network-txns/c-chain/importTx.ts @@ -19,7 +19,7 @@ async function run() { const cChainImportTxnRequest = await walletClient.cChain.prepareImportTxn({ sourceChain: "P", - toAddress: "0x76Dd3d7b2f635c2547B861e55aE8A374E587742D", + toAddress: account.getEVMAddress(), // 0x76Dd3d7b2f635c2547B861e55aE8A374E587742D }); // To sign and issue the txn, you can use one of the following code: diff --git a/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts b/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts index 0a23f14f..82731034 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/baseTx.ts @@ -20,7 +20,7 @@ async function run() { const baseTxnRequest = await walletClient.pChain.prepareBaseTxn({ outputs: [ { - addresses: ["P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"], + addresses: [account.getXPAddress("P", "fuji")], // P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz amount: 0.00001, }, ], diff --git a/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts b/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts index 8c5020df..e7c0fc12 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/convertSubnetToL1Tx.ts @@ -23,7 +23,6 @@ async function run() { // You can find the subnetId in the createSubnetTx subnetId: "2qYCjAVYAtmmi2NnFSXmXHCzs99fWxAfxYQY2b6L9Agduf3Syd", // You can find the blockchainId in the createChainTx txHash - // blockchainId: "2cgxZU4DpYPSim7R4hTUQ7LavoeVYWki4LYKhrCiN27DZzkmoa", // You can pre deploy a proxy contract for the validator manager contract in the createChainTx managerContractAddress: "0xfacade0000000000000000000000000000000000", diff --git a/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts b/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts index 3edc0278..2ae223d6 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/createChainTx.ts @@ -24,8 +24,8 @@ async function run() { vmId: "mDtV8ES8wRL1j2m6Kvc1qRFAvnpq4kufhueAY1bwbzVhk336o", chainName: "test chain avalanche sdk", fromAddresses: [ - "P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz", - "P-fuji18jma8ppw3nhx5r4ap8clazz0dps7rv5u6wmu4t", + account1.getXPAddress("P", "fuji"), // P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz + account2.getXPAddress("P", "fuji"), // P-fuji18jma8ppw3nhx5r4ap8clazz0dps7rv5u6wmu4t ], genesisData: {}, subnetAuth: [0], diff --git a/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts b/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts index afcb66a2..4c7808e0 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/createSubnetTx.ts @@ -5,8 +5,9 @@ import { issueTx as issuePChainTx } from "@avalanche-sdk/client/methods/pChain"; import { loadConfig } from "../../config"; async function run() { - const { privateKeyAccount1 } = loadConfig(); - const account = privateKeyToAvalancheAccount(privateKeyAccount1); + const { privateKeyAccount1, privateKeyAccount2 } = loadConfig(); + const account1 = privateKeyToAvalancheAccount(privateKeyAccount1); + const account2 = privateKeyToAvalancheAccount(privateKeyAccount2); const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, @@ -14,11 +15,11 @@ async function run() { type: "http", url: "https://api.avax-test.network/ext/bc/C/rpc", }, - account, + account: account1, }); const customSubnetOwners = { - addresses: ["P-fuji18jma8ppw3nhx5r4ap8clazz0dps7rv5u6wmu4t"], // This is another ewoq address for testing + addresses: [account2.getXPAddress("P", "fuji")], // P-fuji18jma8ppw3nhx5r4ap8clazz0dps7rv5u6wmu4t locktime: BigInt(123), threshold: 1, }; diff --git a/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts b/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts index 4bc75311..43bb1c9a 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/exportTx.ts @@ -20,7 +20,7 @@ async function run() { const pChainExportTxnRequest = await walletClient.pChain.prepareExportTxn({ exportedOutputs: [ { - addresses: ["P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"], + addresses: [account.getXPAddress("P", "fuji")], // P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz amount: 0.00001, }, ], diff --git a/client/examples/prepare-primary-network-txns/p-chain/importTx.ts b/client/examples/prepare-primary-network-txns/p-chain/importTx.ts index 56da56e3..5a9cbaab 100644 --- a/client/examples/prepare-primary-network-txns/p-chain/importTx.ts +++ b/client/examples/prepare-primary-network-txns/p-chain/importTx.ts @@ -20,7 +20,7 @@ async function run() { const pChainImportTxnRequest = await walletClient.pChain.prepareImportTxn({ sourceChain: "C", importedOutput: { - addresses: ["P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"], + addresses: [account.getXPAddress("P", "fuji")], // P-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz }, }); diff --git a/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts b/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts index 2c52d093..29b77236 100644 --- a/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts +++ b/client/examples/prepare-primary-network-txns/x-chain/exportTx.ts @@ -20,7 +20,7 @@ async function run() { const xChainExportTxnRequest = await walletClient.xChain.prepareExportTxn({ exportedOutputs: [ { - addresses: ["X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"], + addresses: [account.getXPAddress("X", "fuji")], // X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz amount: 0.00001, }, ], diff --git a/client/examples/prepare-primary-network-txns/x-chain/importTx.ts b/client/examples/prepare-primary-network-txns/x-chain/importTx.ts index 9e7d332e..13501865 100644 --- a/client/examples/prepare-primary-network-txns/x-chain/importTx.ts +++ b/client/examples/prepare-primary-network-txns/x-chain/importTx.ts @@ -20,7 +20,7 @@ async function run() { const xChainImportTxnRequest = await walletClient.xChain.prepareImportTxn({ sourceChain: "C", importedOutput: { - addresses: ["X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz"], + addresses: [account.getXPAddress("X", "fuji")], // X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz }, }); diff --git a/client/examples/sendAvax.ts b/client/examples/sendAvax.ts index 40b54ee8..a286cef5 100644 --- a/client/examples/sendAvax.ts +++ b/client/examples/sendAvax.ts @@ -8,6 +8,11 @@ async function run() { // This is the private key of the account that will be used to export the avax from the X-chain to the P-chain const account = privateKeyToAvalancheAccount(config.privateKeyAccount1); + // These are the addresses of the accounts that will receive the avax + // Modify these addresses to your own addresses + const CChainReceiverAddress = "0x909d71Ed4090ac6e57E3645dcF2042f8c6548664"; + const PChainReceiverAddress = "P-fuji1apmh7wxg3js48fhacfv5y9md9065jxuf8rtns7"; + // This is the wallet client that will be used to export the avax from the X-chain to the P-chain const walletClient = createAvalancheWalletClient({ chain: avalancheFuji, @@ -21,7 +26,7 @@ async function run() { // Creates a transaction, signs, sends and waits for the transaction to // be confirmed on C-chain const sendC2CResponse = await walletClient.send({ - to: "0x909d71Ed4090ac6e57E3645dcF2042f8c6548664", + to: CChainReceiverAddress, amount: 0.001, }); console.log("sendC2CResponse", sendC2CResponse); @@ -30,7 +35,7 @@ async function run() { // Creates a export and import transaction, signs, sends and waits for // the transaction to be confirmed on C-chain and P-chain const sendC2PResponse = await walletClient.send({ - to: "P-fuji1apmh7wxg3js48fhacfv5y9md9065jxuf8rtns7", + to: PChainReceiverAddress, amount: 0.001, destinationChain: "P", }); @@ -40,7 +45,7 @@ async function run() { // Creates a export and import transaction, signs, sends and waits for // the transaction to be confirmed on C-chain and P-chain const sendP2CResponse = await walletClient.send({ - to: "0x909d71Ed4090ac6e57E3645dcF2042f8c6548664", + to: CChainReceiverAddress, amount: 0.001, sourceChain: "P", destinationChain: "C", @@ -49,7 +54,7 @@ async function run() { // 4. Send avax to another address on P-chain from P-chain const sendP2PResponse = await walletClient.send({ - to: "P-fuji1apmh7wxg3js48fhacfv5y9md9065jxuf8rtns7", + to: PChainReceiverAddress, amount: 0.001, sourceChain: "P", destinationChain: "P", From c3d6b8b41093652406138067cad555d52af9c2af Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Fri, 15 Aug 2025 02:05:25 +0530 Subject: [PATCH 09/11] docs: add note for creating own env file --- client/README.md | 2 ++ client/examples/README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/client/README.md b/client/README.md index ae455521..ef1d21a5 100644 --- a/client/README.md +++ b/client/README.md @@ -621,6 +621,8 @@ import { /* Window utilities */ } from '@avalanche-sdk/client/window' ## Examples +> **Note:** Make sure to create your own `.env` file by copying the `.env.example` file and updating the values. You'll also need to modify the `config.ts` file to point to your `.env` file path. By default, the examples use the values from `.env.example`, and the test addresses mentioned in the examples as comments (like `0x76Dd3d7b2f635c2547B861e55aE8A374E587742D` and `X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz`) are derived from the private key values in that file. + Check out the [examples](./examples) folder for comprehensive usage examples: ### Basic Examples diff --git a/client/examples/README.md b/client/examples/README.md index ac746626..fc1d8ad6 100644 --- a/client/examples/README.md +++ b/client/examples/README.md @@ -51,7 +51,7 @@ This directory contains practical examples demonstrating how to use the `@avalan npx tsx ``` -> Note: Make sure to create your own `.env` file by copying the `.env.example` file and modifying the env path in `config.ts` file. By default the example uses the values in .env.example and the address mentioned are from these private key values. +> **Note:** Make sure to create your own `.env` file by copying the `.env.example` file and updating the values. You'll also need to modify the `config.ts` file to point to your `.env` file path. By default, the examples use the values from `.env.example`, and the test addresses mentioned in the examples as comments (like `0x76Dd3d7b2f635c2547B861e55aE8A374E587742D` and `X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz`) are derived from the private key values in that file. ## Available Examples From 246b9521736a9c2c55cdc0ec34f414c4a51c7bdc Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Fri, 15 Aug 2025 02:06:58 +0530 Subject: [PATCH 10/11] docs: modify typedoc readme --- client/TYPEDOC.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/TYPEDOC.md b/client/TYPEDOC.md index 9b2221c6..f13d33d9 100644 --- a/client/TYPEDOC.md +++ b/client/TYPEDOC.md @@ -620,6 +620,8 @@ import { /* Window utilities */ } from '@avalanche-sdk/client/window' ## Examples +> **Note:** Make sure to create your own `.env` file by copying the `.env.example` file and updating the values. You'll also need to modify the `config.ts` file to point to your `.env` file path. By default, the examples use the values from `.env.example`, and the test addresses mentioned in the examples as comments (like `0x76Dd3d7b2f635c2547B861e55aE8A374E587742D` and `X-fuji19fc97zn3mzmwr827j4d3n45refkksgms4y2yzz`) are derived from the private key values in that file. + Check out the [examples](https://github.com/ava-labs/avalanche-sdk-typescript/blob/main/client/examples) folder for comprehensive usage examples: ### Basic Examples From ddeefa223c0f1a72d0b79d53e764d807f7858f64 Mon Sep 17 00:00:00 2001 From: Sayan kar Date: Fri, 15 Aug 2025 02:40:35 +0530 Subject: [PATCH 11/11] docs: modify repo readme usage example section --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9d0f2880..5f7ccebc 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ const balance = await client.getBalance({ }) ``` -#### Data Analytics +#### ChainKit SDK Usage ```typescript import { Avalanche } from '@avalanche-sdk/chainkit' @@ -128,11 +128,10 @@ const avalancheSDK = new Avalanche({ network: 'mainnet', }) -// Get transaction history -const transactions = await avalancheSDK.data.evm.transactions.getTransactionsByAddress({ - address: '0x...', - pageSize: 10 -}) +// Get chains supported by metrics API +const result = await avalanche.metrics.chains.list({ + network: "mainnet", +}); ``` #### Cross-Chain Messaging